summaryrefslogtreecommitdiffstats
path: root/sys/net80211
diff options
context:
space:
mode:
authoradrian <adrian@FreeBSD.org>2012-03-08 23:46:42 +0000
committeradrian <adrian@FreeBSD.org>2012-03-08 23:46:42 +0000
commitc7c5399057c24b6a90a5db9e2e47548378220b70 (patch)
tree71f6befe5ed7d41a1f6fcc595e200de5396f52b9 /sys/net80211
parent4ea9702d06a659239fe1a83246e0c7242c6f6e43 (diff)
downloadFreeBSD-src-c7c5399057c24b6a90a5db9e2e47548378220b70.zip
FreeBSD-src-c7c5399057c24b6a90a5db9e2e47548378220b70.tar.gz
Add missing \n's.
This showed up when testing the wtap module, as it attaches with no radiotap tx/rx configuration.
Diffstat (limited to 'sys/net80211')
-rw-r--r--sys/net80211/ieee80211_radiotap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net80211/ieee80211_radiotap.c b/sys/net80211/ieee80211_radiotap.c
index 0ae6896..4aa5f5b 100644
--- a/sys/net80211/ieee80211_radiotap.c
+++ b/sys/net80211/ieee80211_radiotap.c
@@ -67,7 +67,7 @@ ieee80211_radiotap_attach(struct ieee80211com *ic,
else if (tx_radiotap & B(IEEE80211_RADIOTAP_XCHANNEL))
off = radiotap_offset(th, IEEE80211_RADIOTAP_XCHANNEL);
if (off == -1) {
- if_printf(ic->ic_ifp, "%s: no tx channel, radiotap 0x%x",
+ if_printf(ic->ic_ifp, "%s: no tx channel, radiotap 0x%x\n",
__func__, tx_radiotap);
/* NB: we handle this case but data will have no chan spec */
} else
@@ -83,7 +83,7 @@ ieee80211_radiotap_attach(struct ieee80211com *ic,
else if (rx_radiotap & B(IEEE80211_RADIOTAP_XCHANNEL))
off = radiotap_offset(rh, IEEE80211_RADIOTAP_XCHANNEL);
if (off == -1) {
- if_printf(ic->ic_ifp, "%s: no rx channel, radiotap 0x%x",
+ if_printf(ic->ic_ifp, "%s: no rx channel, radiotap 0x%x\n",
__func__, rx_radiotap);
/* NB: we handle this case but data will have no chan spec */
} else
OpenPOWER on IntegriCloud