1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-18 22:43:53 +01:00

base-files: ipcalc.sh: fix off-by-one in range-calculation

SVN-Revision: 16619
This commit is contained in:
Jo-Philipp Wich 2009-06-29 11:35:33 +00:00
parent 962da124e9
commit 19c12174ee

@ -26,7 +26,7 @@ BEGIN {
if (ARGC > 3) {
print "START="int2ip(start)
print "END="int2ip(end-1)
print "END="int2ip(end)
}
}
EOF