diff options
author | adrian <adrian@FreeBSD.org> | 2012-03-27 04:15:38 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2012-03-27 04:15:38 +0000 |
commit | 5e8fce0c81e9b3b69cb56b2588b2dbea5f4051ce (patch) | |
tree | 45684f68ca69dc9553fe09ab10af1f8eabb34b20 /sys/net80211 | |
parent | 78cf971b20065b4a5a59338c546670616a46f26f (diff) | |
download | FreeBSD-src-5e8fce0c81e9b3b69cb56b2588b2dbea5f4051ce.zip FreeBSD-src-5e8fce0c81e9b3b69cb56b2588b2dbea5f4051ce.tar.gz |
Correct the ordering of tid/crypto ic_name.
Because the code lacks all the GNU extensions to printf() format stuff,
the compiler doesn't helpfully tell us that I messed up in a previous
commit.
Pointy hat to: adrian, who likely only cares about this because he's the
only one who bothers flipping on net80211 debugging.
Diffstat (limited to 'sys/net80211')
-rw-r--r-- | sys/net80211/ieee80211_freebsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211_freebsd.c b/sys/net80211/ieee80211_freebsd.c index 0c6742f..b733d2f 100644 --- a/sys/net80211/ieee80211_freebsd.c +++ b/sys/net80211/ieee80211_freebsd.c @@ -572,7 +572,7 @@ ieee80211_notify_replay_failure(struct ieee80211vap *vap, IEEE80211_NOTE_MAC(vap, IEEE80211_MSG_CRYPTO, wh->i_addr2, "%s replay detected tid %d <rsc %ju, csc %ju, keyix %u rxkeyix %u>", - tid, k->wk_cipher->ic_name, (intmax_t) rsc, + k->wk_cipher->ic_name, tid, (intmax_t) rsc, (intmax_t) k->wk_keyrsc[tid], k->wk_keyix, k->wk_rxkeyix); |