Skip to content

Commit

Permalink
Fix bug with generic iw / iwconfig scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
lakeman committed Jul 1, 2013
1 parent e21896b commit 55a4261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/servalproject/system/ChipsetDetection.java
Expand Up @@ -441,7 +441,7 @@ private boolean testForChipset(Chipset chipset) {
if (arChipset.length >= 4)
chipset.adhocOff = arChipset[3];
if (arChipset.length >= 5)
chipset.interfaceUp = arChipset[3];
chipset.interfaceUp = arChipset[4];
} else if (arChipset[0].equals(strExperimental)) {
chipset.experimental = true;
} else if (arChipset[0].equals(strNoWirelessExtensions)) {
Expand Down

0 comments on commit 55a4261

Please sign in to comment.