mirror of
https://github.com/outbackdingo/openwrt.git
synced 2026-02-23 19:07:13 +00:00
fix ipcalc (off by 1)
SVN-Revision: 4737
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user