Browse Source

mac80211: fix handling of vif mac addresses in /lib/wifi/mac80211.sh (patch from #6401)

SVN-Revision: 18923
Felix Fietkau 16 years ago
parent
commit
0a24ec2e4a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/mac80211/files/lib/wifi/mac80211.sh

+ 1 - 1
package/mac80211/files/lib/wifi/mac80211.sh

@@ -149,7 +149,7 @@ enable_mac80211() {
 			else
 				offset="0"
 			fi
-			vif_mac="$( printf %02x $(($mac_1 + $offset)) ):$mac_2"
+			vif_mac="$( printf %02x $((0x$mac_1 + $offset)) ):$mac_2"
 		}
 		ifconfig "$ifname" hw ether "$vif_mac"