svn commit: r322428 - head/usr.bin/mkesdb

Sevan Janiyan sevan at FreeBSD.org
Sat Aug 12 15:51:47 UTC 2017


Author: sevan (doc committer)
Date: Sat Aug 12 15:51:46 2017
New Revision: 322428
URL: https://svnweb.freebsd.org/changeset/base/322428

Log:
  Set usage() to show -d flag
  mkesdb supports the -d flag for enabling debug mode, as documented in the manual.
  
  PR:		209865
  Submitted by:	Maya Rashish <coypu AT sdf DOT org>
  Reviewed by:	imp
  Approved by:	bcr (mentor)
  Obtained from:	NetBSD
  MFC after:	7 days
  Differential Revision:	https://reviews.freebsd.org/D11987

Modified:
  head/usr.bin/mkesdb/yacc.y

Modified: head/usr.bin/mkesdb/yacc.y
==============================================================================
--- head/usr.bin/mkesdb/yacc.y	Sat Aug 12 15:18:17 2017	(r322427)
+++ head/usr.bin/mkesdb/yacc.y	Sat Aug 12 15:51:46 2017	(r322428)
@@ -278,8 +278,8 @@ usage(void)
 {
 	errx(EXIT_FAILURE,
 	    "usage:\n"
-	    "\t%s [-o outfile] [infile]\n"
-	    "\t%s -m [-o outfile] [infile]",
+	    "\t%s [-d] [-o outfile] [infile]\n"
+	    "\t%s -m [-d] [-o outfile] [infile]",
 	    getprogname(), getprogname());
 }
 


More information about the svn-src-all mailing list