120-countrycode.patch 454 B

1234567891011121314
  1. --- a/hostapd/hostapd.c
  2. +++ b/hostapd/hostapd.c
  3. @@ -1546,10 +1546,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. if (hapd->iconf->ieee80211d &&