summaryrefslogtreecommitdiff
path: root/completions/ntpdate
diff options
context:
space:
mode:
Diffstat (limited to 'completions/ntpdate')
-rw-r--r--completions/ntpdate10
1 files changed, 5 insertions, 5 deletions
diff --git a/completions/ntpdate b/completions/ntpdate
index 5291336c..f6ee8f54 100644
--- a/completions/ntpdate
+++ b/completions/ntpdate
@@ -11,11 +11,11 @@ _ntpdate()
return
;;
-*U)
- COMPREPLY=( $(compgen -u -- "$cur") )
+ COMPREPLY=($(compgen -u -- "$cur"))
return
;;
-*p)
- COMPREPLY=( $(compgen -W '{1..8}' -- "$cur") )
+ COMPREPLY=($(compgen -W '{1..8}' -- "$cur"))
return
;;
@@ -24,12 +24,12 @@ _ntpdate()
;;
esac
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_usage "$1")' -- "$cur") )
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur"))
else
_known_hosts_real -- "$cur"
fi
} &&
-complete -F _ntpdate ntpdate
+ complete -F _ntpdate ntpdate
# ex: filetype=sh