diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Type/_services | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Type/_services b/Completion/Unix/Type/_services index 496054795..3dd1e1231 100644 --- a/Completion/Unix/Type/_services +++ b/Completion/Unix/Type/_services @@ -10,7 +10,7 @@ if [[ $OSTYPE = freebsd* ]]; then _wanted services expl service compadd "$@" - $alls[@] && ret=0 fi elif chkconfig --list > /dev/null 2>&1; then - alls=( ${(f)"$(LANGUAGE=C LANG=C LC_ALL=C chkconfig --list)"} ) + alls=( ${(f)"$(LANGUAGE=C LANG=C LC_ALL=C chkconfig --list 2> /dev/null)"} ) inits=( ${${${alls[1,(r)xinetd based*]}[1,-2]}/%[[:space:]]*/} ) xinetds=( ${${${${alls[(r)xinetd based*,-1]}[2,-1]}/#[[:space:]]#}/%:*} ) |