fix ipcalc (off by 1)

SVN-Revision: 4737
owl
Felix Fietkau 2006-09-03 05:35:43 +00:00
parent 4027ebea19
commit 73242900e3
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
awk -f /usr/lib/common.awk -f - $* <<EOF
BEGIN {
@ -27,7 +26,7 @@ BEGIN {
if (ARGC > 3) {
print "START="int2ip(start)
print "END="int2ip(end)
print "END="int2ip(end-1)
}
}
EOF