Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Aug 2017 15:51:46 +0000 (UTC)
From:      Sevan Janiyan <sevan@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r322428 - head/usr.bin/mkesdb
Message-ID:  <201708121551.v7CFpkbS048899@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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());
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708121551.v7CFpkbS048899>