svn commit: r336941 - stable/11/usr.sbin/config

Kyle Evans kevans at FreeBSD.org
Mon Jul 30 21:29:27 UTC 2018


Author: kevans
Date: Mon Jul 30 21:29:26 2018
New Revision: 336941
URL: https://svnweb.freebsd.org/changeset/base/336941

Log:
  MFC r335526: Let -s actually work.

Modified:
  stable/11/usr.sbin/config/main.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/usr.sbin/config/main.c
==============================================================================
--- stable/11/usr.sbin/config/main.c	Mon Jul 30 21:27:26 2018	(r336940)
+++ stable/11/usr.sbin/config/main.c	Mon Jul 30 21:29:26 2018	(r336941)
@@ -116,7 +116,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