svn commit: r344191 - head/sbin/nvmecontrol

Warner Losh imp at FreeBSD.org
Sat Feb 16 00:15:04 UTC 2019


Author: imp
Date: Sat Feb 16 00:15:02 2019
New Revision: 344191
URL: https://svnweb.freebsd.org/changeset/base/344191

Log:
  Remove write-only s_flag.

Modified:
  head/sbin/nvmecontrol/firmware.c

Modified: head/sbin/nvmecontrol/firmware.c
==============================================================================
--- head/sbin/nvmecontrol/firmware.c	Fri Feb 15 23:46:34 2019	(r344190)
+++ head/sbin/nvmecontrol/firmware.c	Sat Feb 16 00:15:02 2019	(r344191)
@@ -177,7 +177,7 @@ static void
 firmware(const struct nvme_function *nf, int argc, char *argv[])
 {
 	int				fd = -1, slot = 0;
-	int				a_flag, s_flag, f_flag;
+	int				a_flag, f_flag;
 	int				activate_action, reboot_required;
 	int				opt;
 	char				*p, *image = NULL;
@@ -188,7 +188,7 @@ firmware(const struct nvme_function *nf, int argc, cha
 	uint8_t				fw_slot1_ro, fw_num_slots;
 	struct nvme_controller_data	cdata;
 
-	a_flag = s_flag = f_flag = false;
+	a_flag = f_flag = false;
 
 	while ((opt = getopt(argc, argv, "af:s:")) != -1) {
 		switch (opt) {
@@ -214,7 +214,6 @@ firmware(const struct nvme_function *nf, int argc, cha
 				    "7.\n", optarg);
 				usage(nf);
 			}
-			s_flag = true;
 			break;
 		case 'f':
 			image = optarg;


More information about the svn-src-head mailing list