diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | net.Linux/ifconfig.sh | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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 4051ef57..c515d4d0 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)) |