diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-28 18:34:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-28 18:34:02 +0000 |
commit | 34ab71b5389bc642a78245595236833c9f3c3fc4 (patch) | |
tree | 3bf0a8dcc02735b3a79c215710a2b34569e00c96 /sbin/wicontrol | |
parent | d59def876bbe41324bc247f84a23d89d5fdb4b7e (diff) |
WI_RID_AUTH_CNTL was renamed to WI_RID_CNFAUTHMODE
Diffstat (limited to 'sbin/wicontrol')
-rw-r--r-- | sbin/wicontrol/wicontrol.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/wicontrol/wicontrol.c b/sbin/wicontrol/wicontrol.c index 185ddf6ad0b..3372d0bc14e 100644 --- a/sbin/wicontrol/wicontrol.c +++ b/sbin/wicontrol/wicontrol.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wicontrol.c,v 1.21 2002/03/21 01:08:40 millert Exp $ */ +/* $OpenBSD: wicontrol.c,v 1.22 2002/03/28 18:34:01 millert Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -67,7 +67,7 @@ static const char copyright[] = "@(#) Copyright (c) 1997, 1998, 1999\ Bill Paul. All rights reserved."; static const char rcsid[] = - "@(#) $OpenBSD: wicontrol.c,v 1.21 2002/03/21 01:08:40 millert Exp $"; + "@(#) $OpenBSD: wicontrol.c,v 1.22 2002/03/28 18:34:01 millert Exp $"; #endif static void wi_getval(char *, struct wi_req *); @@ -499,7 +499,7 @@ static struct wi_table wi_table[] = { static struct wi_table wi_crypt_table[] = { { WI_RID_ENCRYPTION, WI_BOOL, "WEP encryption:\t\t\t\t" }, - { WI_RID_AUTH_CNTL, WI_WORDS, + { WI_RID_CNFAUTHMODE, WI_WORDS, "Authentication type \n(1=OpenSys, 2=Shared Key):\t\t" }, { WI_RID_TX_CRYPT_KEY, WI_WORDS, "TX encryption key:\t\t\t" }, { WI_RID_DEFLT_CRYPT_KEYS, WI_KEYSTRUCT, "Encryption keys:\t\t\t" }, @@ -692,7 +692,7 @@ static struct wi_func wi_opt[] = { { 'r', wi_setword, WI_RID_RTS_THRESH, NULL }, { 's', wi_setstr, WI_RID_NODENAME, NULL }, { 't', wi_setword, WI_RID_TX_RATE, NULL }, - { 'A', wi_setword, WI_RID_AUTH_CNTL, NULL }, + { 'A', wi_setword, WI_RID_CNFAUTHMODE, NULL }, { 'M', wi_setword, WI_RID_MICROWAVE_OVEN, NULL }, { 'P', wi_setword, WI_RID_PM_ENABLED, NULL }, { 'R', wi_setword, WI_RID_ROAMING_MODE, NULL }, |