svn commit: r326287 - head/usr.sbin/efivar

Ed Maste emaste at FreeBSD.org
Mon Nov 27 19:35:23 UTC 2017


Author: emaste
Date: Mon Nov 27 19:35:21 2017
New Revision: 326287
URL: https://svnweb.freebsd.org/changeset/base/326287

Log:
  efivar: add missing getopt 'u' option

Modified:
  head/usr.sbin/efivar/efivar.c

Modified: head/usr.sbin/efivar/efivar.c
==============================================================================
--- head/usr.sbin/efivar/efivar.c	Mon Nov 27 18:42:23 2017	(r326286)
+++ head/usr.sbin/efivar/efivar.c	Mon Nov 27 19:35:21 2017	(r326287)
@@ -255,7 +255,7 @@ parse_args(int argc, char **argv)
 {
 	int ch, i;
 
-	while ((ch = getopt_long(argc, argv, "aAbdDf:gHlLNn:OpRt:w",
+	while ((ch = getopt_long(argc, argv, "aAbdDf:gHlLNn:OpRt:uw",
 		    longopts, NULL)) != -1) {
 		switch (ch) {
 		case 'a':


More information about the svn-src-all mailing list