diff options
author | ru <ru@FreeBSD.org> | 2001-09-11 09:49:36 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-09-11 09:49:36 +0000 |
commit | a0a0725b6705931d79f35f0cee161a86e4c57da9 (patch) | |
tree | 29de08134f9612251aae3006846ed745216dad6f | |
parent | 05234b1d161765a03ab63fb63d0be569f4a7e813 (diff) | |
download | FreeBSD-src-a0a0725b6705931d79f35f0cee161a86e4c57da9.zip FreeBSD-src-a0a0725b6705931d79f35f0cee161a86e4c57da9.tar.gz |
Removed -M and -N from getopt(3) call as well.
-rw-r--r-- | sbin/ccdconfig/ccdconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/ccdconfig/ccdconfig.c b/sbin/ccdconfig/ccdconfig.c index bae89a9..6078c7c 100644 --- a/sbin/ccdconfig/ccdconfig.c +++ b/sbin/ccdconfig/ccdconfig.c @@ -98,7 +98,7 @@ main(argc, argv) { int ch, options = 0, action = CCD_CONFIG; - while ((ch = getopt(argc, argv, "cCf:gM:N:uUv")) != -1) { + while ((ch = getopt(argc, argv, "cCf:guUv")) != -1) { switch (ch) { case 'c': action = CCD_CONFIG; |