From: Felix Fietkau Date: Sun, 2 Oct 2005 16:47:17 +0000 (+0000) Subject: bump wificonf version number, remove wl0_wet variable support X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=01f4a11a913fff2033b0f721c73e9140836dc23e;p=librecmc%2Flibrecmc.git bump wificonf version number, remove wl0_wet variable support SVN-Revision: 2023 --- diff --git a/openwrt/package/wificonf/Makefile b/openwrt/package/wificonf/Makefile index 4dd452955f..f6608331b1 100644 --- a/openwrt/package/wificonf/Makefile +++ b/openwrt/package/wificonf/Makefile @@ -3,7 +3,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=wificonf -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_BUILD_DIR:=$(BUILD_DIR)/wificonf diff --git a/openwrt/package/wificonf/wificonf.c b/openwrt/package/wificonf/wificonf.c index 0d652ee159..6bb26b1345 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_enabled(wl_var("wet")) || !nvram_match(wl_var("mode"), "wet"); + wet = nvram_match(wl_var("mode"), "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");