diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_chown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_chown b/Completion/Unix/Command/_chown index 0c8ef916f..3371e8ea4 100644 --- a/Completion/Unix/Command/_chown +++ b/Completion/Unix/Command/_chown @@ -39,10 +39,10 @@ case $state in else if compset -S '[.:]*'; then suf=() - elif [[ $OSTYPE = (solaris*|hpux*|*bsd*|linux*) ]]; then - suf=( -qS ':' ) - else + elif [[ $OSTYPE = irix* ]]; then suf=( -qS '.' ) + else + suf=( -qS ':' ) fi _users "$suf[@]" && ret=0 fi |