diff options
author | maxim <maxim@FreeBSD.org> | 2006-10-20 13:10:27 +0000 |
---|---|---|
committer | maxim <maxim@FreeBSD.org> | 2006-10-20 13:10:27 +0000 |
commit | 0a091591c89d3d3284b5fa020780d99628b89783 (patch) | |
tree | a1cdf6b032d66cef2e48ce1e0164ffad475645b4 /sbin/bsdlabel/bsdlabel.c | |
parent | b4140c65c18502075a73eb40086bc05b9b23cb46 (diff) | |
download | FreeBSD-src-0a091591c89d3d3284b5fa020780d99628b89783.zip FreeBSD-src-0a091591c89d3d3284b5fa020780d99628b89783.tar.gz |
o '-s' flag was killed in rev. 1.75. Clean getopt(3).
PR: bin/104616
Submitted by: Oliver Fromme
MFC after: 1 week
Diffstat (limited to 'sbin/bsdlabel/bsdlabel.c')
-rw-r--r-- | sbin/bsdlabel/bsdlabel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index 366d5ec..bcba125 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; |