svn commit: r321883 - stable/10/usr.bin/stdbuf
Alan Somers
asomers at FreeBSD.org
Tue Aug 1 16:48:35 UTC 2017
Author: asomers
Date: Tue Aug 1 16:48:33 2017
New Revision: 321883
URL: https://svnweb.freebsd.org/changeset/base/321883
Log:
MFC r320807:
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
Sponsored by: Google, Inc (GSoC 2017)
Differential Revision: https://reviews.freebsd.org/D11529
Modified:
stable/10/usr.bin/stdbuf/stdbuf.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/usr.bin/stdbuf/stdbuf.c
==============================================================================
--- stable/10/usr.bin/stdbuf/stdbuf.c Tue Aug 1 16:41:17 2017 (r321882)
+++ stable/10/usr.bin/stdbuf/stdbuf.c Tue Aug 1 16:48:33 2017 (r321883)
@@ -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-stable-10
mailing list