openssl: Drop unnecessary tr invocation.
This commit is contained in:
parent
52637750d1
commit
4bfb42e627
@ -94,8 +94,8 @@ _openssl()
|
||||
return 0
|
||||
;;
|
||||
-cipher)
|
||||
COMPREPLY=( $( compgen -W "$(openssl ciphers | \
|
||||
tr ':' '\n')" -- "$cur" ) )
|
||||
COMPREPLY=( $( IFS=: compgen -W "$( openssl ciphers )" \
|
||||
-- "$cur" ) )
|
||||
return 0
|
||||
;;
|
||||
esac
|
||||
|
@ -25,4 +25,8 @@ expect {
|
||||
sync_after_int
|
||||
|
||||
|
||||
assert_complete_any "openssl pkey -cipher "
|
||||
sync_after_int
|
||||
|
||||
|
||||
teardown
|
||||
|
Loading…
x
Reference in New Issue
Block a user