Browse Source

wlantest: Fix BIP replay detection

Jouni Malinen 14 years ago
parent
commit
4d4c29158d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      wlantest/rx_mgmt.c

+ 1 - 1
wlantest/rx_mgmt.c

@@ -509,7 +509,7 @@ static int check_bip(struct wlantest *wt, const u8 *data, size_t len)
 		return 0;
 	}
 
-	if (os_memcmp(mmie + 2, bss->ipn[keyid], 6) >= 0) {
+	if (os_memcmp(mmie + 2, bss->ipn[keyid], 6) <= 0) {
 		wpa_printf(MSG_INFO, "BIP replay detected: SA=" MACSTR,
 			   MAC2STR(mgmt->sa));
 		wpa_hexdump(MSG_INFO, "RX IPN", mmie + 2, 6);