projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f129f9
)
fix ipcalc (off by 1)
author
Felix Fietkau
<nbd@openwrt.org>
Sun, 3 Sep 2006 05:35:43 +0000
(
05:35
+0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Sun, 3 Sep 2006 05:35:43 +0000
(
05:35
+0000)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4737
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/base-files/default/bin/ipcalc
patch
|
blob
|
history
diff --git
a/package/base-files/default/bin/ipcalc
b/package/base-files/default/bin/ipcalc
index
23af6a0
..
e8efa6b
100755
(executable)
--- a/
package/base-files/default/bin/ipcalc
+++ b/
package/base-files/default/bin/ipcalc
@@
-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