summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2017-10-27 16:00:47 +0000
committerjmc <jmc@openbsd.org>2017-10-27 16:00:47 +0000
commitbd329abeac5ee725efae7885fa594a629bd6f0cd (patch)
treee6823e882faff45123707cade020774c39c023a1
parentAdd '-n' option to just parse dhclient.conf for errors. (diff)
downloadwireguard-openbsd-bd329abeac5ee725efae7885fa594a629bd6f0cd.tar.xz
wireguard-openbsd-bd329abeac5ee725efae7885fa594a629bd6f0cd.zip
zap a bad space in usage(): sorry ken for not spotting!
-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 714fb733e67..7c26729a00d 100644
--- a/sbin/dhclient/dhclient.c
+++ b/sbin/dhclient/dhclient.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dhclient.c,v 1.516 2017/10/27 15:10:16 krw Exp $ */
+/* $OpenBSD: dhclient.c,v 1.517 2017/10/27 16:00:47 jmc Exp $ */
/*
* Copyright 2004 Henning Brauer <henning@openbsd.org>
@@ -694,7 +694,7 @@ usage(void)
extern char *__progname;
fprintf(stderr,
- "usage: %s [-dnq ] [-c file] [-i options] [-L file] "
+ "usage: %s [-dnq] [-c file] [-i options] [-L file] "
"[-l file] interface\n", __progname);
exit(1);
}