svn commit: r293026 - stable/9/usr.sbin/makefs

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


Author: ngie
Date: Fri Jan  1 00:38:17 2016
New Revision: 293026
URL: https://svnweb.freebsd.org/changeset/base/293026

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

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

Modified: stable/9/usr.sbin/makefs/makefs.c
==============================================================================
--- stable/9/usr.sbin/makefs/makefs.c	Fri Jan  1 00:36:59 2016	(r293025)
+++ stable/9/usr.sbin/makefs/makefs.c	Fri Jan  1 00:38:17 2016	(r293026)
@@ -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