summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2006-05-23 16:57:47 +0000
committerimp <imp@FreeBSD.org>2006-05-23 16:57:47 +0000
commit9f41dd89979b140eee90711ceacf392b87d131eb (patch)
tree98a0893de992d9607b7e5c6b20aeaab1abfbd0ac
parentf29eefcdec6824fa4600f52ec57bbfd075f0cc7a (diff)
downloadFreeBSD-src-9f41dd89979b140eee90711ceacf392b87d131eb.zip
FreeBSD-src-9f41dd89979b140eee90711ceacf392b87d131eb.tar.gz
Remove 'n' from the getopt string. There's no -n option that is
parsed, so it winds up at usage anyway. Add 'b' to the usage summary. Noticed by Ben Mesander.
-rw-r--r--sbin/dhclient/dhclient.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/dhclient.c b/sbin/dhclient/dhclient.c
index 9c691f8..05f99c8 100644
--- a/sbin/dhclient/dhclient.c
+++ b/sbin/dhclient/dhclient.c
@@ -301,7 +301,7 @@ main(int argc, char *argv[])
openlog(__progname, LOG_PID | LOG_NDELAY, DHCPD_LOG_FACILITY);
setlogmask(LOG_UPTO(LOG_INFO));
- while ((ch = getopt(argc, argv, "bc:dl:nqu")) != -1)
+ while ((ch = getopt(argc, argv, "bc:dl:qu")) != -1)
switch (ch) {
case 'b':
immediate_daemon = 1;
@@ -437,7 +437,7 @@ usage(void)
{
extern char *__progname;
- fprintf(stderr, "usage: %s [-dqu] ", __progname);
+ fprintf(stderr, "usage: %s [-bdqu] ", __progname);
fprintf(stderr, "[-c conffile] [-l leasefile] interface\n");
exit(1);
}
OpenPOWER on IntegriCloud