Module Name:    src
Committed By:   christos
Date:           Wed Jul 17 12:55:48 UTC 2013

Modified Files:
        src/bin/dd: args.c

Log Message:
PR/48057: psi: skip and msgfmt cannot be used together. Looks like a pasto;
fixed.


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/bin/dd/args.c

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

Modified files:

Index: src/bin/dd/args.c
diff -u src/bin/dd/args.c:1.37 src/bin/dd/args.c:1.38
--- src/bin/dd/args.c:1.37	Mon Nov  7 17:24:23 2011
+++ src/bin/dd/args.c	Wed Jul 17 08:55:48 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: args.c,v 1.37 2011/11/07 22:24:23 jym Exp $	*/
+/*	$NetBSD: args.c,v 1.38 2013/07/17 12:55:48 christos Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993, 1994
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)args.c	8.3 (Berkeley) 4/2/94";
 #else
-__RCSID("$NetBSD: args.c,v 1.37 2011/11/07 22:24:23 jym Exp $");
+__RCSID("$NetBSD: args.c,v 1.38 2013/07/17 12:55:48 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -97,7 +97,7 @@ static const struct arg {
 	{ "ibs",	f_ibs,		C_IBS,	 C_BS|C_IBS },
 	{ "if",		f_if,		C_IF,	 C_IF },
 	{ "iseek",	f_skip,		C_SKIP,	 C_SKIP },
-	{ "msgfmt",	f_msgfmt,	C_SKIP,	 C_SKIP },
+	{ "msgfmt",	f_msgfmt,	0,	 0 },
 	{ "obs",	f_obs,		C_OBS,	 C_BS|C_OBS },
 	{ "of",		f_of,		C_OF,	 C_OF },
 	{ "oseek",	f_seek,		C_SEEK,	 C_SEEK },

Reply via email to