From: Felix Fietkau Date: Sun, 2 Oct 2005 18:59:48 +0000 (+0000) Subject: enable wet for sta mode by default X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=926728c2e791a5e11616d303192e2fd5af0c22b1;p=librecmc%2Flibrecmc.git enable wet for sta mode by default SVN-Revision: 2025 --- 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");