Remove extra whitespace

This commit is contained in:
Witold Sowa 2009-09-13 20:27:54 +03:00 committed by Jouni Malinen
parent 614ff64fe0
commit 1bd3f426d3
3 changed files with 3 additions and 4 deletions

View file

@ -543,7 +543,7 @@ wpa_supplicant_select_bss_non_wpa(struct wpa_supplicant *wpa_s,
"BSSID mismatch"); "BSSID mismatch");
continue; continue;
} }
if (!(ssid->key_mgmt & WPA_KEY_MGMT_NONE) && if (!(ssid->key_mgmt & WPA_KEY_MGMT_NONE) &&
!(ssid->key_mgmt & WPA_KEY_MGMT_WPS) && !(ssid->key_mgmt & WPA_KEY_MGMT_WPS) &&
!(ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)) !(ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA))
@ -553,7 +553,7 @@ wpa_supplicant_select_bss_non_wpa(struct wpa_supplicant *wpa_s,
continue; continue;
} }
if ((ssid->key_mgmt & if ((ssid->key_mgmt &
(WPA_KEY_MGMT_IEEE8021X | WPA_KEY_MGMT_PSK | (WPA_KEY_MGMT_IEEE8021X | WPA_KEY_MGMT_PSK |
WPA_KEY_MGMT_FT_IEEE8021X | WPA_KEY_MGMT_FT_PSK | WPA_KEY_MGMT_FT_IEEE8021X | WPA_KEY_MGMT_FT_PSK |
WPA_KEY_MGMT_IEEE8021X_SHA256 | WPA_KEY_MGMT_IEEE8021X_SHA256 |

View file

@ -1781,7 +1781,6 @@ static void ieee80211_rx_mgmt_ft_action(struct wpa_supplicant *wpa_s,
wpa_printf(MSG_DEBUG, "MLME: Foreign STA Address " MACSTR wpa_printf(MSG_DEBUG, "MLME: Foreign STA Address " MACSTR
" in FT Action Response", MAC2STR(sta_addr)); " in FT Action Response", MAC2STR(sta_addr));
return; return;
} }
if (status) { if (status) {

View file

@ -2050,7 +2050,7 @@ struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
os_free(wpa_s); os_free(wpa_s);
return NULL; return NULL;
} }
wpa_s->next = global->ifaces; wpa_s->next = global->ifaces;
global->ifaces = wpa_s; global->ifaces = wpa_s;