diff options
author | Peter Hessler <phessler@cvs.openbsd.org> | 2018-11-20 20:26:02 +0000 |
---|---|---|
committer | Peter Hessler <phessler@cvs.openbsd.org> | 2018-11-20 20:26:02 +0000 |
commit | 5a43669ba67fdb0ef0def97962a71cb2f478b653 (patch) | |
tree | 46350aed0fff8e49f557edb2ccf8ab074912a667 | |
parent | 23e921e846bbffadb759cffe2c0d967372171266 (diff) |
fix whitespace in debugging function
-rw-r--r-- | sys/net80211/ieee80211_node.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/net80211/ieee80211_node.c b/sys/net80211/ieee80211_node.c index 176f20d15c8..122fca7d3b6 100644 --- a/sys/net80211/ieee80211_node.c +++ b/sys/net80211/ieee80211_node.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_node.c,v 1.156 2018/11/20 10:00:15 patrick Exp $ */ +/* $OpenBSD: ieee80211_node.c,v 1.157 2018/11/20 20:26:01 phessler Exp $ */ /* $NetBSD: ieee80211_node.c,v 1.14 2004/05/09 09:18:47 dyoung Exp $ */ /*- @@ -140,15 +140,15 @@ ieee80211_print_ess(struct ieee80211_ess *ess) printf(" "); if (ess->rsnciphers & IEEE80211_CIPHER_USEGROUP) - printf("usegroup"); + printf(" usegroup"); if (ess->rsnciphers & IEEE80211_CIPHER_WEP40) - printf("wep40"); + printf(" wep40"); if (ess->rsnciphers & IEEE80211_CIPHER_WEP104) - printf("wep104"); + printf(" wep104"); if (ess->rsnciphers & IEEE80211_CIPHER_TKIP) - printf("tkip"); + printf(" tkip"); if (ess->rsnciphers & IEEE80211_CIPHER_CCMP) - printf("ccmp"); + printf(" ccmp"); } if (ess->flags & IEEE80211_F_WEPON) { int i = ess->def_txkey; |