mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
[package] wireless-tools: fix a bug in iwconfig power command
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16491 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
--- a/iwconfig.c
|
||||
+++ b/iwconfig.c
|
||||
@@ -1034,8 +1034,8 @@ set_power_info(int skfd,
|
||||
wrq.u.power.disabled = 0;
|
||||
|
||||
/* Is there any value to grab ? */
|
||||
- value = strtod(args[0], &unit);
|
||||
- if(unit != args[0])
|
||||
+ value = strtod(args[i], &unit);
|
||||
+ if(unit != args[i])
|
||||
{
|
||||
struct iw_range range;
|
||||
int flags;
|
||||
Reference in New Issue
Block a user