diff options
author | Thomas Bächler <thomas@archlinux.org> | 2009-06-07 16:36:03 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2009-06-07 16:36:03 +0200 |
commit | d42decabd30ff8031a02cb94ddf98a86a38eecdc (patch) | |
tree | 402b630fd97da6372c5dedd19d56c40d79f24efe | |
parent | f4a0e350119794972bb1d022a6364fd10a0d80e9 (diff) |
Fix array count/walk in rc.shutdown and rc.single, see #13263
-rwxr-xr-x | rc.shutdown | 2 | ||||
-rwxr-xr-x | rc.single | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rc.shutdown b/rc.shutdown index 85ad835..1143c16 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -24,7 +24,7 @@ fi if [ "$PREVLEVEL" = "3" -o "$PREVLEVEL" = "5" ]; then # Shutdown daemons - let i=${#DAEMONS[@]} + let i=${#DAEMONS[@]}-1 while [ $i -ge 0 ]; do if [ "${DAEMONS[$i]:0:1}" != '!' ]; then ck_daemon ${DAEMONS[$i]#@} || stop_daemon ${DAEMONS[$i]#@} @@ -8,7 +8,7 @@ if [ "$PREVLEVEL" = "3" -o "$PREVLEVEL" = "5" ]; then # Shutdown daemons - let i=${#DAEMONS[@]} + let i=${#DAEMONS[@]}-1 while [ $i -ge 0 ]; do if [ "${DAEMONS[$i]:0:1}" != '!' ]; then ck_daemon ${DAEMONS[$i]#@} || stop_daemon ${DAEMONS[$i]#@} |