From owner-svn-src-head@FreeBSD.ORG Thu Sep 13 12:55:11 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2C593106566C; Thu, 13 Sep 2012 12:55:11 +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 127A88FC12; Thu, 13 Sep 2012 12:55:11 +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 q8DCtAY7000631; Thu, 13 Sep 2012 12:55:10 GMT (envelope-from zont@svn.freebsd.org) Received: (from zont@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8DCtAgc000630; Thu, 13 Sep 2012 12:55:10 GMT (envelope-from zont@svn.freebsd.org) Message-Id: <201209131255.q8DCtAgc000630@svn.freebsd.org> From: Andrey Zonov Date: Thu, 13 Sep 2012 12:55:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r240463 - head/sbin/fsck_ffs X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Sep 2012 12:55:11 -0000 Author: zont Date: Thu Sep 13 12:55:10 2012 New Revision: 240463 URL: http://svn.freebsd.org/changeset/base/240463 Log: - Fix a typo in debug message. Approved by: kib (mentor) MFC after: 3 days Modified: head/sbin/fsck_ffs/suj.c Modified: head/sbin/fsck_ffs/suj.c ============================================================================== --- head/sbin/fsck_ffs/suj.c Thu Sep 13 10:26:55 2012 (r240462) +++ head/sbin/fsck_ffs/suj.c Thu Sep 13 12:55:10 2012 (r240463) @@ -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); }