hostapd: update to latest git, remove openssl dependency for hostapd-full, it works...
[openwrt-10.03/.git] / package / hostapd / patches / 110-countrycode.patch
1 --- a/hostapd/hostapd.c
2 +++ b/hostapd/hostapd.c
3 @@ -1344,10 +1344,8 @@ static int setup_interface(struct hostap
4         if (hapd->iconf->country[0] && hapd->iconf->country[1]) {
5                 os_memcpy(country, hapd->iconf->country, 3);
6                 country[3] = '\0';
7 -               if (hostapd_set_country(hapd, country) < 0) {
8 +               if (hostapd_set_country(hapd, country) < 0)
9                         wpa_printf(MSG_ERROR, "Failed to set country code");
10 -                       return -1;
11 -               }
12         }
13  
14         if (hapd->iconf->bridge_packets != INTERNAL_BRIDGE_DO_NOT_CONTROL &&