[Bug 264238] wpa_supplicant 2.10 fails to associate to open secondary VAP when primary VAP is WPA

From: <bugzilla-noreply_at_freebsd.org>
Date: Sat, 02 Jul 2022 09:05:52 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=264238

--- Comment #173 from J.R. Oldroyd <fbsd@opal.com> ---
Yes, that works since it is the same as comment #164.

Further clarification...

In your earlier revised patch, the first test:
    if (!bss)
probably should have been:
    if (bss)

because the original code was:
    if (!bss || wpa_bss_get_ie(...))

so the get_ie function is only called if bss is set.

However, this does not make it work since, as I said, wpa_bss_get_ie() is still
called if wpa_bss_get_ie_ext() failed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.