X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/cfec308466afeb8330a8ec4f1e27dc1f17add02c..ceb354aabbc39c6fce9c057a7cd44386512ccfcd:/openwrt/package/wificonf/wificonf.c?ds=sidebyside diff --git a/openwrt/package/wificonf/wificonf.c b/openwrt/package/wificonf/wificonf.c index 60ffd900a..1ac0ca880 100644 --- a/openwrt/package/wificonf/wificonf.c +++ b/openwrt/package/wificonf/wificonf.c @@ -396,6 +396,7 @@ void start_watchdog(int skfd, char *ifname) char *v, *next; unsigned char buf[8192], buf2[8192], wbuf[80], *p, *tmp; int wds = 0, i, j, restart_wds; + wlc_ssid_t ssid; if (fork()) return; @@ -550,7 +551,7 @@ static void setup_bcom_vif_sec(int skfd, char *ifname, int vif) wep = 1; bcom_set_bss_int(skfd, ifname, vif, "wsec", WEP_ENABLED); bcom_set_bss_int(skfd, ifname, vif, "wsec_restrict", 1); - bcom_set_bss_int(skfd, ifname, vif, "auth", 1); + bcom_set_bss_int(skfd, ifname, vif, "auth", nvram_enabled(vif_var(vif, "auth"))); } else { wep = 0; } @@ -867,8 +868,14 @@ static void setup_bcom_old(int skfd, char *ifname) bcom_ioctl(skfd, ifname, WLC_SET_EAP_RESTRICT, &val, sizeof(val)); bcom_set_int(skfd, ifname, "sup_wpa", 0); } + + if (v = nvram_get(wl_var("auth"))) { + val = atoi(v); + bcom_ioctl(skfd, ifname, WLC_SET_AUTH, &val, sizeof(val)); + } } + static void set_wext_ssid(int skfd, char *ifname) { char *buffer;