projects
/
openwrt
/
staging
/
wigyori.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
962da12
)
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)
SVN-Revision: 16619
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 e8efa6b96cf9c05f2b2689ebb462960cce236221..318980e5a25f25de5cc53d065faf8571228af8a6 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