dnsmasq: Fix splitting hostid for DHCPv6 static leases
[openwrt/staging/blogic.git] / package / network / services / dnsmasq / files / dnsmasq.init
index 845cf1b5e338e059b8944677a4441ac24fd149a1..eebf5c76c89479f4a9653059110432a4faa748d4 100644 (file)
@@ -35,7 +35,7 @@ hex_to_hostid() {
         export "$var=$(
                 printf "%0x:%0x"  \
                         $(((0x$hex >> 16) % 65536)) \
-                        $(( 0x$hex        % 256))
+                        $(( 0x$hex        % 65536))
         )"
 
         return 0