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:
a82b3fd
)
[package] base-files: ipcalc.sh: fix off-by-one in range-calculation
author
Jo-Philipp Wich
<jow@openwrt.org>
Mon, 29 Jun 2009 11:35:33 +0000
(11:35 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Mon, 29 Jun 2009 11:35:33 +0000
(11:35 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16619
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/base-files/files/bin/ipcalc.sh
patch
|
blob
|
history
diff --git
a/package/base-files/files/bin/ipcalc.sh
b/package/base-files/files/bin/ipcalc.sh
index
e8efa6b
..
318980e
100755
(executable)
--- a/
package/base-files/files/bin/ipcalc.sh
+++ b/
package/base-files/files/bin/ipcalc.sh
@@
-26,7
+26,7
@@
BEGIN {
if (ARGC > 3) {
print "START="int2ip(start)
- print "END="int2ip(end
-1
)
+ print "END="int2ip(end)
}
}
EOF