Module Name:    src
Committed By:   bouyer
Date:           Mon Aug 17 21:28:24 UTC 2009

Modified Files:
        src/sbin/tunefs: tunefs.c

Log Message:
fix pasto: UFS_WAPBL_FLAGS_CREATE_LOG is "create-log" not "clear-log"


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 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.39 src/sbin/tunefs/tunefs.c:1.40
--- src/sbin/tunefs/tunefs.c:1.39	Tue Apr  7 12:25:19 2009
+++ src/sbin/tunefs/tunefs.c	Mon Aug 17 21:28:24 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: tunefs.c,v 1.39 2009/04/07 12:25:19 lukem Exp $	*/
+/*	$NetBSD: tunefs.c,v 1.40 2009/08/17 21:28:24 bouyer 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.39 2009/04/07 12:25:19 lukem Exp $");
+__RCSID("$NetBSD: tunefs.c,v 1.40 2009/08/17 21:28:24 bouyer Exp $");
 #endif
 #endif /* not lint */
 
@@ -309,7 +309,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