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 /rc.single | |
parent | f4a0e350119794972bb1d022a6364fd10a0d80e9 (diff) |
Fix array count/walk in rc.shutdown and rc.single, see #13263
Diffstat (limited to 'rc.single')
-rwxr-xr-x | rc.single | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]#@} |