svn commit: r320807 - head/usr.bin/stdbuf

Alan Somers asomers at FreeBSD.org
Sat Jul 8 17:08:44 UTC 2017


Author: asomers
Date: Sat Jul  8 17:08:42 2017
New Revision: 320807
URL: https://svnweb.freebsd.org/changeset/base/320807

Log:
  stdbuf(1): Add buffer definition "B" to the usage message
  
  This option has been missing from the usage message ever since the program
  was first imported.
  
  Submitted by:	shivansh
  Reviewed by:	asomers
  MFC after:	3 weeks
  Sponsored by:	Google, Inc (GSoC 2017)
  Differential Revision:	https://reviews.freebsd.org/D11529

Modified:
  head/usr.bin/stdbuf/stdbuf.c

Modified: head/usr.bin/stdbuf/stdbuf.c
==============================================================================
--- head/usr.bin/stdbuf/stdbuf.c	Sat Jul  8 16:39:55 2017	(r320806)
+++ head/usr.bin/stdbuf/stdbuf.c	Sat Jul  8 17:08:42 2017	(r320807)
@@ -40,7 +40,7 @@ static void
 usage(int s)
 {
 
-	fprintf(stderr, "Usage: %s [-e 0|L|<sz>] [-i 0|L|<sz>] [-o 0|L|<sz>] "
+	fprintf(stderr, "Usage: %s [-e 0|L|B|<sz>] [-i 0|L|B|<sz>] [-o 0|L|B|<sz>] "
 	    "<cmd> [args ...]\n", __progname);
 	exit(s);
 }


More information about the svn-src-head mailing list