diff options
author | Milan P. Stanić <mps@arvanta.net> | 2020-01-16 11:09:28 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2020-01-16 12:11:01 +0000 |
commit | ad9996810186cbed04ec0c185bd3c998622a0a4f (patch) | |
tree | a7064bc48f3c4fe94fb1bf7ec6f6f1474a2fdd11 | |
parent | 23427c5d3a7c5201bcfa8b357c651be3a2f75a65 (diff) | |
download | alpine-conf-ad9996810186cbed04ec0c185bd3c998622a0a4f.zip |
lbu: fix wrong cipher match in check_openssl for 'lbu commit -e'
fixes #10451
-rw-r--r-- | lbu.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -126,7 +126,7 @@ check_openssl() { [ -z "$ENCRYPTION" ] && return 0 OPENSSL=$(which openssl 2>/dev/null) || die "openssl was not found" - $OPENSSL enc -ciphers | grep "^$ENCRYPTION$" > /dev/null \ + $OPENSSL list -1 -cipher-commands | grep "^$ENCRYPTION$" > /dev/null \ || die "Cipher $ENCRYPTION is not supported" } |