diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-06-21 23:41:54 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-06-21 23:41:54 +0000 |
commit | eea7543b10b31d60319338121d4072a638787063 (patch) | |
tree | 6e10e88b4f9af011012796ca23cf58b3985033c1 | |
parent | d93ea4d97cbdba42794bb856a9402c2926e0d1c6 (diff) |
Make printing of 802.11 fields consistent with the rest by printing
a colon (':') after the field name. Noticed by markus@, OK deraadt@
-rw-r--r-- | sbin/ifconfig/ifconfig.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c index b329e6b0157..56bf0493869 100644 --- a/sbin/ifconfig/ifconfig.c +++ b/sbin/ifconfig/ifconfig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ifconfig.c,v 1.100 2004/05/29 17:54:46 jcs Exp $ */ +/* $OpenBSD: ifconfig.c,v 1.101 2004/06/21 23:41:53 millert Exp $ */ /* $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $ */ /* @@ -77,7 +77,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "@(#)ifconfig.c 8.2 (Berkeley) 2/16/94"; #else -static const char rcsid[] = "$OpenBSD: ifconfig.c,v 1.100 2004/05/29 17:54:46 jcs Exp $"; +static const char rcsid[] = "$OpenBSD: ifconfig.c,v 1.101 2004/06/21 23:41:53 millert Exp $"; #endif #endif /* not lint */ @@ -1274,7 +1274,7 @@ ieee80211_status(void) len = nwid.i_len; if (len > IEEE80211_NWID_LEN) len = IEEE80211_NWID_LEN; - fputs("\tnwid ", stdout); + fputs("\tnwid: ", stdout); print_string(nwid.i_nwid, nwid.i_len); putchar('\n'); } @@ -1283,7 +1283,7 @@ ieee80211_status(void) (void)strlcpy(nwkey.i_name, name, sizeof(nwkey.i_name)); if (ioctl(s, SIOCG80211NWKEY, (caddr_t)&nwkey) == 0 && nwkey.i_wepon > 0) { - fputs("\tnwkey ", stdout); + fputs("\tnwkey: ", stdout); /* try to retrieve WEP keys */ for (i = 0; i < IEEE80211_WEP_NKID; i++) { nwkey.i_key[i].i_keydat = keybuf[i]; @@ -1337,7 +1337,7 @@ ieee80211_status(void) memset(&power, 0, sizeof(power)); (void)strlcpy(power.i_name, name, sizeof(power.i_name)); if (ioctl(s, SIOCG80211POWER, &power) == 0) { - fputs("\tpowersave ", stdout); + fputs("\tpowersave: ", stdout); if (power.i_enabled) printf("on (%dms sleep)\n", power.i_maxsleep); else |