diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-10 12:20:06 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-10 12:20:06 +0000 |
commit | b20ccd71b7f6be71debd0cdf72d561ef13f3f328 (patch) | |
tree | d666afdd469b38825c96b84ba2f9f03f61a62396 | |
parent | 372969e3b5d33078b86a8d6532e54cc3c4619214 (diff) |
fix Set Tx Power error in wificonf
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1394 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/wificonf/wificonf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/wificonf/wificonf.c b/package/wificonf/wificonf.c index e1df6675e..7a9cde5a1 100644 --- a/package/wificonf/wificonf.c +++ b/package/wificonf/wificonf.c @@ -396,7 +396,7 @@ void setup_wext(int skfd, char *ifname) wrq.u.txpower.value = -1; wrq.u.txpower.fixed = 1; - wrq.u.txpower.flags = IW_TXPOW_MWATT; + wrq.u.txpower.flags = IW_TXPOW_DBM; IW_SET_EXT_ERR(skfd, ifname, SIOCSIWTXPOW, &wrq, "Set Tx Power"); /* Set up WEP */ |