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:
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
|
||||
|
Loading…
Reference in New Issue
Block a user