From: Roel Kluin Date: Tue, 3 Feb 2009 16:15:57 +0000 (+0100) Subject: libertas: pos[4] tested twice, 2nd should be pos[5] X-Git-Tag: Ubuntu-goldfish-3.4.0-4.27~12698^2~754^2~3 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=baf62eecfa75a26682efdfed0d74256992a47e6b;p=mirror_ubuntu-zesty-kernel.git libertas: pos[4] tested twice, 2nd should be pos[5] pos[4] can't be both 0x43 and 0x04, 2nd should be pos[5] Signed-off-by: Roel Kluin Acked-by: Dan Williams Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/libertas/scan.c b/drivers/net/wireless/libertas/scan.c index 57f6c12cda20..00a57ed78afc 100644 --- a/drivers/net/wireless/libertas/scan.c +++ b/drivers/net/wireless/libertas/scan.c @@ -692,7 +692,7 @@ static int lbs_process_bss(struct bss_descriptor *bss, bss->wpa_ie_len); } else if (pos[1] >= MARVELL_MESH_IE_LENGTH && pos[2] == 0x00 && pos[3] == 0x50 && - pos[4] == 0x43 && pos[4] == 0x04) { + pos[4] == 0x43 && pos[5] == 0x04) { lbs_deb_scan("got mesh IE\n"); bss->mesh = 1; } else {