summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-11-02 10:07:10 +0000
committerRoy Marples <roy@marples.name>2007-11-02 10:07:10 +0000
commit220f6f8fdba09d8e19b61a060d29d3d3bd6e13aa (patch)
treef5e503c9d23e86e5cebd6a5360f96547600db1d1
parent54a8d559267290f2e1f7e4be210ee511fc0bbb56 (diff)
downloadopenrc-220f6f8fdba09d8e19b61a060d29d3d3bd6e13aa.tar.gz
openrc-220f6f8fdba09d8e19b61a060d29d3d3bd6e13aa.tar.bz2
openrc-220f6f8fdba09d8e19b61a060d29d3d3bd6e13aa.tar.xz
Fix an ifconfig calculation for shells that don't support the newer POSIX shell math expansion, #197856.
-rw-r--r--ChangeLog5
-rw-r--r--net.Linux/ifconfig.sh2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8898854..af39cbc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for Gentoo System Intialization ("rc") scripts
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPLv2
+ 02 Nov 2007; Roy Marples <uberlord@gentoo.org>:
+
+ Fix an ifconfig calculation for shells that don't support the newer
+ POSIX shell math expansion, #197856.
+
01 Nov 2007; Roy Marples <uberlord@gentoo.org>:
Work cleanly with bridges on kernels without TCP, #197791.
diff --git a/net.Linux/ifconfig.sh b/net.Linux/ifconfig.sh
index 4051ef5..c515d4d 100644
--- a/net.Linux/ifconfig.sh
+++ b/net.Linux/ifconfig.sh
@@ -106,7 +106,7 @@ _cidr2netmask() {
while [ ${i} -lt ${frac} ] ; do
sum=$((${sum} + ${cur}))
cur=$((${cur} / 2))
- i=$((i + 1))
+ i=$((${i} + 1))
done
netmask="${netmask}.${sum}"
done=$((${done} + 1))