From f72bbf974be9c55ef00e9ba7ee5a9d646bc424ca Mon Sep 17 00:00:00 2001 From: Maxim Konovalov Date: Fri, 20 Oct 2006 13:10:27 +0000 Subject: [PATCH] o '-s' flag was killed in rev. 1.75. Clean getopt(3). PR: bin/104616 Submitted by: Oliver Fromme MFC after: 1 week --- sbin/bsdlabel/bsdlabel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index 366d5ec2c5c..bcba1253751 100644 --- a/sbin/bsdlabel/bsdlabel.c +++ b/sbin/bsdlabel/bsdlabel.c @@ -148,7 +148,7 @@ main(int argc, char *argv[]) int ch, error = 0; char const *name = 0; - while ((ch = getopt(argc, argv, "ABb:efm:nRrs:w")) != -1) + while ((ch = getopt(argc, argv, "ABb:efm:nRrw")) != -1) switch (ch) { case 'A': allfields = 1;