diff options
author | 2013-01-18 08:07:32 +0000 | |
---|---|---|
committer | 2013-01-18 08:07:32 +0000 | |
commit | ead322953878ddbdacc6ec1d27e5f19f0b86f46a (patch) | |
tree | 7fc41eb98581d9b64a541e73bfb012aa8098d1c9 | |
parent | -u before -V in usage(); (diff) | |
download | wireguard-openbsd-ead322953878ddbdacc6ec1d27e5f19f0b86f46a.tar.xz wireguard-openbsd-ead322953878ddbdacc6ec1d27e5f19f0b86f46a.zip |
-L before -l;
-rw-r--r-- | sbin/dhclient/dhclient.8 | 14 | ||||
-rw-r--r-- | sbin/dhclient/dhclient.c | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/sbin/dhclient/dhclient.8 b/sbin/dhclient/dhclient.8 index aab1de1d440..1b382377b31 100644 --- a/sbin/dhclient/dhclient.8 +++ b/sbin/dhclient/dhclient.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: dhclient.8,v 1.12 2013/01/18 05:50:32 krw Exp $ +.\" $OpenBSD: dhclient.8,v 1.13 2013/01/18 08:07:32 jmc Exp $ .\" .\" Copyright (c) 1997 The Internet Software Consortium. .\" All rights reserved. @@ -46,8 +46,8 @@ .Op Fl dqu .Op Fl c Ar file .Op Fl i Ar options -.Op Fl l Ar file .Op Fl L Ar file +.Op Fl l Ar file .Ar interface .Sh DESCRIPTION The @@ -61,7 +61,7 @@ should attempt to configure must be specified on the command line. .Pp The options are as follows: -.Bl -tag -width "-p port" +.Bl -tag -width Ds .It Fl c Ar file Specify an alternate location, .Ar file , @@ -83,10 +83,6 @@ This list will override any ignore statements in must be a comma separated list of valid option names. Invalid or duplicated option names will cause the entire list to be discarded. -.It Fl l Ar file -Specify an alternate location, -.Ar file , -for the leases file. .It Fl L Ar file Specify a location, .Ar file , @@ -98,6 +94,10 @@ specified file. offered {} will contain the lease offered by the DHCP server. effective {} will contain the modified lease used to configure the interface. +.It Fl l Ar file +Specify an alternate location, +.Ar file , +for the leases file. .It Fl q Forces .Nm diff --git a/sbin/dhclient/dhclient.c b/sbin/dhclient/dhclient.c index e0b13c0c008..fa7781a69bb 100644 --- a/sbin/dhclient/dhclient.c +++ b/sbin/dhclient/dhclient.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dhclient.c,v 1.212 2013/01/18 05:50:32 krw Exp $ */ +/* $OpenBSD: dhclient.c,v 1.213 2013/01/18 08:07:32 jmc Exp $ */ /* * Copyright 2004 Henning Brauer <henning@openbsd.org> @@ -492,7 +492,7 @@ usage(void) extern char *__progname; fprintf(stderr, - "usage: %s [-dqu] [-c file] [-i options] [-l file] [-L file] " + "usage: %s [-dqu] [-c file] [-i options] [-L file] [-l file] " "interface\n", __progname); exit(1); } |