summaryrefslogtreecommitdiff
path: root/completions/ldapvi
diff options
context:
space:
mode:
Diffstat (limited to 'completions/ldapvi')
-rw-r--r--completions/ldapvi9
1 files changed, 4 insertions, 5 deletions
diff --git a/completions/ldapvi b/completions/ldapvi
index f2d2c293..9c9b6491 100644
--- a/completions/ldapvi
+++ b/completions/ldapvi
@@ -11,8 +11,8 @@ _ldapvi()
return 0
;;
-Y|--sasl-mech)
- COMPREPLY=( $( compgen -W 'EXTERNAL GSSAPI DIGEST-MD5 \
- CRAM-MD5 PLAIN ANONYMOUS' -- "$cur" ) )
+ COMPREPLY=( $( compgen -W 'EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5
+ PLAIN ANONYMOUS' -- "$cur" ) )
return 0
;;
--bind)
@@ -20,7 +20,7 @@ _ldapvi()
return 0
;;
--bind-dialog)
- COMPREPLY=( $( compgen -W 'never auto always' -- $cur ) )
+ COMPREPLY=( $( compgen -W 'never auto always' -- "$cur" ) )
return 0
;;
--scope)
@@ -37,8 +37,7 @@ _ldapvi()
return 0
;;
--tls)
- COMPREPLY=( $( compgen -W 'never allow try strict' \
- -- "$cur" ) )
+ COMPREPLY=( $( compgen -W 'never allow try strict' -- "$cur" ) )
return 0
;;
esac