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

View File

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