summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/command.c
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>1998-10-26 19:07:42 +0000
committerbrian <brian@FreeBSD.org>1998-10-26 19:07:42 +0000
commitca1adcf3bc4c498421cf342fda2d3e2ae3b9b1e5 (patch)
treea97dec13c01e8e0c402b3643c9025572f9293ff6 /usr.sbin/ppp/command.c
parent2879293691c94fd47031d654d9b7c5f3f788b9e8 (diff)
downloadFreeBSD-src-ca1adcf3bc4c498421cf342fda2d3e2ae3b9b1e5.zip
FreeBSD-src-ca1adcf3bc4c498421cf342fda2d3e2ae3b9b1e5.tar.gz
Shuffle the iface-alias option so that's in alphabetical
order like the rest of the options.
Diffstat (limited to 'usr.sbin/ppp/command.c')
-rw-r--r--usr.sbin/ppp/command.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/ppp/command.c b/usr.sbin/ppp/command.c
index a3f0d1d..2e432ff 100644
--- a/usr.sbin/ppp/command.c
+++ b/usr.sbin/ppp/command.c
@@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: command.c,v 1.170 1998/10/26 19:07:36 brian Exp $
+ * $Id: command.c,v 1.171 1998/10/26 19:07:39 brian Exp $
*
*/
#include <sys/types.h>
@@ -134,7 +134,7 @@
#define NEG_DNS 50
const char Version[] = "2.0";
-const char VersionDate[] = "$Date: 1998/10/26 19:07:36 $";
+const char VersionDate[] = "$Date: 1998/10/26 19:07:39 $";
static int ShowCommand(struct cmdargs const *);
static int TerminalCommand(struct cmdargs const *);
@@ -2178,6 +2178,9 @@ NegotiateSet(struct cmdargs const *arg)
static struct cmdtab const NegotiateCommands[] = {
{"idcheck", NULL, OptSet, LOCAL_AUTH, "Check FSM reply ids",
"disable|enable", (const void *)OPT_IDCHECK},
+ {"iface-alias", NULL, IfaceAliasOptSet, LOCAL_AUTH,
+ "retain interface addresses", "disable|enable",
+ (const void *)OPT_IFACEALIAS},
{"loopback", NULL, OptSet, LOCAL_AUTH, "Loop packets for local iface",
"disable|enable", (const void *)OPT_LOOPBACK},
{"passwdauth", NULL, OptSet, LOCAL_AUTH, "Use passwd file",
@@ -2192,9 +2195,6 @@ static struct cmdtab const NegotiateCommands[] = {
"disable|enable", (const void *)OPT_THROUGHPUT},
{"utmp", NULL, OptSet, LOCAL_AUTH, "Log connections in utmp",
"disable|enable", (const void *)OPT_UTMP},
- {"iface-alias", NULL, IfaceAliasOptSet, LOCAL_AUTH,
- "maintain interface addresses", "disable|enable",
- (const void *)OPT_IFACEALIAS},
#define OPT_MAX 9 /* accept/deny allowed below and not above */
OpenPOWER on IntegriCloud