diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-10-23 23:45:41 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-10-23 23:45:41 +0000 |
commit | 30999276f39b37f7adf4bd2a5c372050e2ccab63 (patch) | |
tree | 582994a794a46d72d3d19eff66c692316abcd174 /package/hostapd | |
parent | f0a8a11ddfa2d58d9907b07bd537f6ba9e266c71 (diff) | |
download | upstream-30999276f39b37f7adf4bd2a5c372050e2ccab63.tar.gz upstream-30999276f39b37f7adf4bd2a5c372050e2ccab63.tar.bz2 upstream-30999276f39b37f7adf4bd2a5c372050e2ccab63.zip |
hostapd: remove some unnecessary debugging code from the last commit
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23603 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd')
-rw-r--r-- | package/hostapd/patches/453-ap_sta_support.patch | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/package/hostapd/patches/453-ap_sta_support.patch b/package/hostapd/patches/453-ap_sta_support.patch index 02b09bf542..c2f4d7c6f0 100644 --- a/package/hostapd/patches/453-ap_sta_support.patch +++ b/package/hostapd/patches/453-ap_sta_support.patch @@ -34,7 +34,7 @@ --- a/wpa_supplicant/wpa_supplicant.c +++ b/wpa_supplicant/wpa_supplicant.c -@@ -120,6 +120,58 @@ extern int wpa_debug_show_keys; +@@ -120,6 +120,55 @@ extern int wpa_debug_show_keys; extern int wpa_debug_timestamp; extern struct wpa_driver_ops *wpa_drivers[]; @@ -73,12 +73,9 @@ + + if (asprintf(&cmd, "RELOAD channel=%d sec_chan=0 hw_mode=%d ht_capab_mask=%d ieee80211n=%d", + channel, hw_mode, bss->ht_capab, !!bss->ht_capab) < 0) { -+ fprintf(stderr, "ASPRINTF FAILED\n"); -+ exit(1); + return -1; + } + -+ wpa_printf(MSG_ERROR, "\n\n-------- RUN COMMAND: %s\n\n", cmd); + ret = wpa_ctrl_request(wpa_s->hostapd, cmd, os_strlen(cmd), buf, &len, NULL); + free(cmd); + @@ -93,7 +90,7 @@ /* Configure default/group WEP keys for static WEP */ int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid) { -@@ -548,6 +600,10 @@ void wpa_supplicant_set_state(struct wpa +@@ -548,6 +597,10 @@ void wpa_supplicant_set_state(struct wpa #ifndef IEEE8021X_EAPOL wpa_drv_set_supp_port(wpa_s, 1); #endif @@ -104,7 +101,7 @@ } else if (state == WPA_DISCONNECTED || state == WPA_ASSOCIATING || state == WPA_ASSOCIATED) { wpa_s->new_connection = 1; -@@ -1957,6 +2013,21 @@ static int wpa_supplicant_init_iface(str +@@ -1957,6 +2010,21 @@ static int wpa_supplicant_init_iface(str os_strlcpy(wpa_s->bridge_ifname, iface->bridge_ifname, sizeof(wpa_s->bridge_ifname)); } |