Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Dec 2004 00:59:04 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 67497 for review
Message-ID:  <200412220059.iBM0x4pF098539@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=67497

Change 67497 by sam@sam_ebb on 2004/12/22 00:58:14

	fix debug msgs

Affected files ...

.. //depot/projects/wifi/sys/net80211/ieee80211_crypto_none.c#4 edit
.. //depot/projects/wifi/sys/net80211/ieee80211_input.c#31 edit

Differences ...

==== //depot/projects/wifi/sys/net80211/ieee80211_crypto_none.c#4 (text+ko) ====

@@ -103,7 +103,7 @@
 	 * happen, at least, when changing keys.
 	 */
 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_CRYPTO,
-		"[%s] key (id %u) is invalid\n",
+		"[%s] key id %u is not set (encap)\n",
 		ether_sprintf(wh->i_addr1), keyid>>6);
 	ic->ic_stats.is_tx_badcipher++;
 	return 0;
@@ -124,7 +124,7 @@
 	 */
 	/* XXX useful to know dst too */
 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_CRYPTO,
-		"[%s] key (id %u) is invalid\n",
+		"[%s] key id %u is not set (decap)\n",
 		ether_sprintf(wh->i_addr2), ivp[IEEE80211_WEP_IVLEN] >> 6);
 	ic->ic_stats.is_rx_badkeyid++;
 	return 0;

==== //depot/projects/wifi/sys/net80211/ieee80211_input.c#31 (text+ko) ====

@@ -1823,7 +1823,7 @@
 			IEEE80211_DISCARD(ic, IEEE80211_MSG_ELEMID,
 			    wh, ieee80211_mgt_subtype_name[subtype >>
 				IEEE80211_FC0_SUBTYPE_SHIFT],
-			    "for off-channel %u\n", chan);
+			    "for off-channel %u", chan);
 			ic->ic_stats.is_rx_chanmismatch++;
 			return;
 		}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200412220059.iBM0x4pF098539>