From owner-svn-src-stable@FreeBSD.ORG Wed Sep 26 13:57:17 2012 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F19D106566B; Wed, 26 Sep 2012 13:57:17 +0000 (UTC) (envelope-from zont@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 67B7B8FC1F; Wed, 26 Sep 2012 13:57:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8QDvHj5037669; Wed, 26 Sep 2012 13:57:17 GMT (envelope-from zont@svn.freebsd.org) Received: (from zont@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8QDvHTL037667; Wed, 26 Sep 2012 13:57:17 GMT (envelope-from zont@svn.freebsd.org) Message-Id: <201209261357.q8QDvHTL037667@svn.freebsd.org> From: Andrey Zonov Date: Wed, 26 Sep 2012 13:57:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r240961 - stable/9/sbin/fsck_ffs X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 13:57:17 -0000 Author: zont Date: Wed Sep 26 13:57:16 2012 New Revision: 240961 URL: http://svn.freebsd.org/changeset/base/240961 Log: MFC r240463: - Fix a typo in debug message. Modified: stable/9/sbin/fsck_ffs/suj.c Directory Properties: stable/9/sbin/fsck_ffs/ (props changed) Modified: stable/9/sbin/fsck_ffs/suj.c ============================================================================== --- stable/9/sbin/fsck_ffs/suj.c Wed Sep 26 12:36:22 2012 (r240960) +++ stable/9/sbin/fsck_ffs/suj.c Wed Sep 26 13:57:16 2012 (r240961) @@ -882,7 +882,7 @@ ino_isat(ino_t parent, off_t diroff, ino printf("Directory %d has bad mode %o\n", parent, *mode); else - printf("Directory %d zero inode\n", parent); + printf("Directory %d has zero mode\n", parent); } return (0); }