diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-10-02 18:59:48 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-10-02 18:59:48 +0000 |
commit | 926728c2e791a5e11616d303192e2fd5af0c22b1 (patch) | |
tree | 99a37160828e1d6fda67463346767c05bdadcd07 | |
parent | 01f4a11a913fff2033b0f721c73e9140836dc23e (diff) | |
download | upstream-926728c2e791a5e11616d303192e2fd5af0c22b1.tar.gz upstream-926728c2e791a5e11616d303192e2fd5af0c22b1.tar.bz2 upstream-926728c2e791a5e11616d303192e2fd5af0c22b1.zip |
enable wet for sta mode by default
SVN-Revision: 2025
-rw-r--r-- | openwrt/package/wificonf/wificonf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/wificonf/wificonf.c b/openwrt/package/wificonf/wificonf.c index 6bb26b1345..491479fdcb 100644 --- a/openwrt/package/wificonf/wificonf.c +++ b/openwrt/package/wificonf/wificonf.c @@ -430,7 +430,7 @@ void set_wext_mode(skfd, ifname) /* Set operation mode */ ap = !nvram_match(wl_var("mode"), "sta") && !nvram_match(wl_var("mode"), "wet"); infra = !nvram_disabled(wl_var("infra")); - wet = nvram_match(wl_var("mode"), "wet"); + wet = !ap && !nvram_disabled(wl_var("wet")); wrq.u.mode = (!infra ? IW_MODE_ADHOC : (ap ? IW_MODE_MASTER : (wet ? IW_MODE_REPEAT : IW_MODE_INFRA))); IW_SET_EXT_ERR(skfd, ifname, SIOCSIWMODE, &wrq, "Set Mode"); |