From 9f41dd89979b140eee90711ceacf392b87d131eb Mon Sep 17 00:00:00 2001 From: imp Date: Tue, 23 May 2006 16:57:47 +0000 Subject: 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. --- sbin/dhclient/dhclient.c | 4 ++-- 1 file 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); } -- cgit v1.1