Module Name:    src
Committed By:   snj
Date:           Tue Aug 25 18:36:08 UTC 2009

Modified Files:
        src/sbin/tunefs [netbsd-5-0]: tunefs.c

Log Message:
Pull up following revision(s) (requested by bouyer in ticket #917):
        sbin/tunefs/tunefs.c: revision 1.40
fix pasto: UFS_WAPBL_FLAGS_CREATE_LOG is "create-log" not "clear-log"


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.37.6.1 src/sbin/tunefs/tunefs.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sbin/tunefs/tunefs.c
diff -u src/sbin/tunefs/tunefs.c:1.37 src/sbin/tunefs/tunefs.c:1.37.6.1
--- src/sbin/tunefs/tunefs.c:1.37	Thu Jul 31 15:55:41 2008
+++ src/sbin/tunefs/tunefs.c	Tue Aug 25 18:36:08 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: tunefs.c,v 1.37 2008/07/31 15:55:41 simonb Exp $	*/
+/*	$NetBSD: tunefs.c,v 1.37.6.1 2009/08/25 18:36:08 snj Exp $	*/
 
 /*
  * Copyright (c) 1983, 1993
@@ -39,7 +39,7 @@
 #if 0
 static char sccsid[] = "@(#)tunefs.c	8.3 (Berkeley) 5/3/95";
 #else
-__RCSID("$NetBSD: tunefs.c,v 1.37 2008/07/31 15:55:41 simonb Exp $");
+__RCSID("$NetBSD: tunefs.c,v 1.37.6.1 2009/08/25 18:36:08 snj Exp $");
 #endif
 #endif /* not lint */
 
@@ -345,7 +345,7 @@
 		printf("\n");
 		printf("\tjournal log flags:");
 		if (sblock.fs_journal_flags & UFS_WAPBL_FLAGS_CREATE_LOG)
-			printf(" clear-log");
+			printf(" create-log");
 		if (sblock.fs_journal_flags & UFS_WAPBL_FLAGS_CLEAR_LOG)
 			printf(" clear-log");
 		printf("\n");

Reply via email to