svn commit: r335526 - head/usr.sbin/config

Bryan Drewery bdrewery at FreeBSD.org
Fri Jun 22 01:10:06 UTC 2018


Author: bdrewery
Date: Fri Jun 22 01:10:05 2018
New Revision: 335526
URL: https://svnweb.freebsd.org/changeset/base/335526

Log:
  Let -s actually work.
  
  MFC after:	2 weeks
  Sponsored by:	Dell EMC

Modified:
  head/usr.sbin/config/main.c

Modified: head/usr.sbin/config/main.c
==============================================================================
--- head/usr.sbin/config/main.c	Fri Jun 22 00:55:39 2018	(r335525)
+++ head/usr.sbin/config/main.c	Fri Jun 22 01:10:05 2018	(r335526)
@@ -118,7 +118,7 @@ main(int argc, char **argv)
 	printmachine = 0;
 	kernfile = NULL;
 	SLIST_INIT(&includepath);
-	while ((ch = getopt(argc, argv, "CI:d:gmpsVx:")) != -1)
+	while ((ch = getopt(argc, argv, "CI:d:gmps:Vx:")) != -1)
 		switch (ch) {
 		case 'C':
 			filebased = 1;


More information about the svn-src-all mailing list