summaryrefslogtreecommitdiff
path: root/Completion/Unix
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Unix')
-rw-r--r--Completion/Unix/Command/_chown6
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