svn commit: r292884 - head/usr.sbin/makefs
Garrett Cooper
ngie at FreeBSD.org
Tue Dec 29 20:17:42 UTC 2015
Author: ngie
Date: Tue Dec 29 20:17:40 2015
New Revision: 292884
URL: https://svnweb.freebsd.org/changeset/base/292884
Log:
Fix getopt(3) argument after r290180; I forgot to change -r to -R
by accident
MFC after: 3 days
Pointyhat to: ngie
Reported by: vangyzen
Sponsored by: EMC / Isilon Storage Division
Modified:
head/usr.sbin/makefs/makefs.c
Modified: head/usr.sbin/makefs/makefs.c
==============================================================================
--- head/usr.sbin/makefs/makefs.c Tue Dec 29 19:56:26 2015 (r292883)
+++ head/usr.sbin/makefs/makefs.c Tue Dec 29 20:17:40 2015 (r292884)
@@ -116,7 +116,7 @@ main(int argc, char *argv[])
start_time.tv_sec = start.tv_sec;
start_time.tv_nsec = start.tv_usec * 1000;
- while ((ch = getopt(argc, argv, "B:b:Dd:f:F:M:m:N:o:pr:s:S:t:xZ")) != -1) {
+ while ((ch = getopt(argc, argv, "B:b:Dd:f:F:M:m:N:o:pR:s:S:t:xZ")) != -1) {
switch (ch) {
case 'B':
More information about the svn-src-head
mailing list