diff options
-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" } |