summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2017-08-09 17:35:38 +0000
committerjmc <jmc@openbsd.org>2017-08-09 17:35:38 +0000
commit036cd9ef5ec403d67c6eed84711cf4ac31bfc509 (patch)
treeded084101289631d46adaec485e07f119a42140c
parentExpose TSC to vmm guest (diff)
downloadwireguard-openbsd-036cd9ef5ec403d67c6eed84711cf4ac31bfc509.tar.xz
wireguard-openbsd-036cd9ef5ec403d67c6eed84711cf4ac31bfc509.zip
the recent adjustment of -i means usage() fits nicely on
two lines now, instead of three;
-rw-r--r--usr.sbin/ndp/ndp.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.sbin/ndp/ndp.c b/usr.sbin/ndp/ndp.c
index 582b284f52c..da03a3eda3c 100644
--- a/usr.sbin/ndp/ndp.c
+++ b/usr.sbin/ndp/ndp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ndp.c,v 1.85 2017/08/09 14:36:00 florian Exp $ */
+/* $OpenBSD: ndp.c,v 1.86 2017/08/09 17:35:38 jmc Exp $ */
/* $KAME: ndp.c,v 1.101 2002/07/17 08:46:33 itojun Exp $ */
/*
@@ -762,10 +762,9 @@ void
usage(void)
{
printf("usage: ndp [-acnt] ");
- printf("[-A wait] [-d hostname] [-f filename]\n");
- printf("\t[-i interface] ");
- printf("[-s nodename ether_addr [temp] [proxy]]\n");
- printf("\t[-V rdomain] [hostname]\n");
+ printf("[-A wait] [-d hostname] [-f filename] [-i interface]\n");
+ printf("\t[-s nodename ether_addr [temp] [proxy]] ");
+ printf("[-V rdomain] [hostname]\n");
exit(1);
}