diff options
author | 2004-04-08 15:36:38 +0000 | |
---|---|---|
committer | 2004-04-08 15:36:38 +0000 | |
commit | fd682578d43a9a311908f5a63a475f025cd6ae83 (patch) | |
tree | 512ccd97cf580729e219be9fa01387dae0402501 | |
parent | When reallocating the line buffer, double the existing buffer (diff) | |
download | wireguard-openbsd-fd682578d43a9a311908f5a63a475f025cd6ae83.tar.xz wireguard-openbsd-fd682578d43a9a311908f5a63a475f025cd6ae83.zip |
fix usage(), jmc
-rw-r--r-- | sbin/dhclient/dhclient.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/dhclient.c b/sbin/dhclient/dhclient.c index 31575b88760..5779e0affd9 100644 --- a/sbin/dhclient/dhclient.c +++ b/sbin/dhclient/dhclient.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dhclient.c,v 1.34 2004/04/08 01:13:30 henning Exp $ */ +/* $OpenBSD: dhclient.c,v 1.35 2004/04/08 15:36:38 henning Exp $ */ /* DHCP Client. */ @@ -298,7 +298,7 @@ usage(void) { extern char *__progname; - fprintf(stderr, "usage: %s [-dDqu] ", __progname); + fprintf(stderr, "usage: %s [-dqu] ", __progname); fprintf(stderr, "[-c conffile] [-l leasefile] interface\n"); exit(1); } |