summaryrefslogtreecommitdiffstats
path: root/usr.sbin/dhcrelay
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2016-12-13 06:55:32 +0000
committerjmc <jmc@openbsd.org>2016-12-13 06:55:32 +0000
commitbf61b05497a78877842f208ca825c77a9a3d7cc1 (patch)
treecdb7a797a8e3cfba71202a7831bd9c7daee171d6 /usr.sbin/dhcrelay
parentmake v6 tunnel address handling consider ipv6 scope. (diff)
downloadwireguard-openbsd-bf61b05497a78877842f208ca825c77a9a3d7cc1.tar.xz
wireguard-openbsd-bf61b05497a78877842f208ca825c77a9a3d7cc1.zip
simplify previous; ok reyk
Diffstat (limited to 'usr.sbin/dhcrelay')
-rw-r--r--usr.sbin/dhcrelay/dhcrelay.86
-rw-r--r--usr.sbin/dhcrelay/dhcrelay.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/dhcrelay/dhcrelay.8 b/usr.sbin/dhcrelay/dhcrelay.8
index 7831fd3f8bc..049981e439d 100644
--- a/usr.sbin/dhcrelay/dhcrelay.8
+++ b/usr.sbin/dhcrelay/dhcrelay.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: dhcrelay.8,v 1.13 2016/12/12 15:41:05 rzalamena Exp $
+.\" $OpenBSD: dhcrelay.8,v 1.14 2016/12/13 06:55:32 jmc Exp $
.\"
.\" Copyright (c) 1997 The Internet Software Consortium.
.\" All rights reserved.
@@ -36,7 +36,7 @@
.\" see ``http://www.isc.org/isc''. To learn more about Vixie
.\" Enterprises, see ``http://www.vix.com''.
.\"
-.Dd $Mdocdate: December 12 2016 $
+.Dd $Mdocdate: December 13 2016 $
.Dt DHCRELAY 8
.Os
.Sh NAME
@@ -48,7 +48,7 @@
.Op Fl C Ar circuit-id
.Op Fl R Ar remote-id
.Fl i Ar interface
-.Ar destination1 Op Ar ... destinationN
+.Ar destination ...
.Sh DESCRIPTION
The
.Nm
diff --git a/usr.sbin/dhcrelay/dhcrelay.c b/usr.sbin/dhcrelay/dhcrelay.c
index b66d2259966..c5a7816aac5 100644
--- a/usr.sbin/dhcrelay/dhcrelay.c
+++ b/usr.sbin/dhcrelay/dhcrelay.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dhcrelay.c,v 1.50 2016/12/12 15:41:05 rzalamena Exp $ */
+/* $OpenBSD: dhcrelay.c,v 1.51 2016/12/13 06:55:32 jmc Exp $ */
/*
* Copyright (c) 2004 Henning Brauer <henning@cvs.openbsd.org>
@@ -439,7 +439,7 @@ usage(void)
extern char *__progname;
fprintf(stderr, "usage: %s [-do] [-C circuit-id] [-R remote-id] "
- "-i interface\n\tdestination1 [... destinationN]\n",
+ "-i interface\n\tdestination ...\n",
__progname);
exit(1);
}