Module Name: src
Committed By: maya
Date: Mon Jun 27 20:15:16 UTC 2016
Modified Files:
src/usr.bin/mkesdb: yacc.y
Log Message:
Mention -d flag in mkesdb(1) usage
PR bin/24001
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/usr.bin/mkesdb/yacc.y
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/mkesdb/yacc.y
diff -u src/usr.bin/mkesdb/yacc.y:1.9 src/usr.bin/mkesdb/yacc.y:1.10
--- src/usr.bin/mkesdb/yacc.y:1.9 Tue Jun 16 23:44:44 2015
+++ src/usr.bin/mkesdb/yacc.y Mon Jun 27 20:15:16 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: yacc.y,v 1.9 2015/06/16 23:44:44 christos Exp $ */
+/* $NetBSD: yacc.y,v 1.10 2016/06/27 20:15:16 maya Exp $ */
%{
/*-
@@ -33,7 +33,7 @@
#include <sys/cdefs.h>
#if !defined(lint)
-__RCSID("$NetBSD: yacc.y,v 1.9 2015/06/16 23:44:44 christos Exp $");
+__RCSID("$NetBSD: yacc.y,v 1.10 2016/06/27 20:15:16 maya Exp $");
#endif /* not lint */
#include <assert.h>
@@ -290,7 +290,7 @@ do_mkdb(FILE *in)
__dead static void
usage(void)
{
- fprintf(stderr, "Usage: %s [-m] [-o outfile] [infile]\n",
+ fprintf(stderr, "Usage: %s [-md] [-o outfile] [infile]\n",
getprogname());
exit(EXIT_FAILURE);
}