[PATCH] libertas: fix size of SSID comparison in stop_adhoc check

Signed-off-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Dan Williams 2007-05-10 22:52:37 -04:00 committed by John W. Linville
parent 4684c23dd4
commit ad1f329895

View file

@ -333,7 +333,7 @@ static int should_stop_adhoc(wlan_adapter *adapter,
if (adapter->curbssparams.ssid.ssidlength != assoc_req->ssid.ssidlength) if (adapter->curbssparams.ssid.ssidlength != assoc_req->ssid.ssidlength)
return 1; return 1;
if (memcmp(adapter->curbssparams.ssid.ssid, assoc_req->ssid.ssid, if (memcmp(adapter->curbssparams.ssid.ssid, assoc_req->ssid.ssid,
sizeof(struct WLAN_802_11_SSID))) adapter->curbssparams.ssid.ssidlength))
return 1; return 1;
/* FIXME: deal with 'auto' mode somehow */ /* FIXME: deal with 'auto' mode somehow */