From c8de227be64b25d70e7d394b5c95a243d7bfd43c Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Thu, 17 Jun 2004 13:10:05 +0000 Subject: 20059: check for systems using . separator instead of for those using : --- Completion/Unix/Command/_chown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Completion/Unix/Command') 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 -- cgit 1.4.1