svn commit: r293025 - stable/10/usr.sbin/makefs

Garrett Cooper ngie at FreeBSD.org
Fri Jan 1 00:37:00 UTC 2016


Author: ngie
Date: Fri Jan  1 00:36:59 2016
New Revision: 293025
URL: https://svnweb.freebsd.org/changeset/base/293025

Log:
  MFC r292884:
  
  Fix getopt(3) argument after r290180; I forgot to change -r to -R
  by accident
  
  Pointyhat to: ngie

Modified:
  stable/10/usr.sbin/makefs/makefs.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/makefs/makefs.c
==============================================================================
--- stable/10/usr.sbin/makefs/makefs.c	Fri Jan  1 00:36:20 2016	(r293024)
+++ stable/10/usr.sbin/makefs/makefs.c	Fri Jan  1 00:36:59 2016	(r293025)
@@ -113,7 +113,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-all mailing list