diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2020-11-19 14:41:58 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@armlinux.org.uk> | 2020-11-19 14:41:58 +0000 |
commit | 6abf890c18f81cf93d9a3c83ac4531408d667a07 (patch) | |
tree | c997162d006ad8865eade51794c97b7770a58b91 | |
parent | da61ea6e7af1b92a1e823fbb7b3bb3421e1bd73a (diff) |
Fix build OpenSSL error in tools/respond.c
-rw-r--r-- | tools/respond.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/respond.c b/tools/respond.c index e1554cb..791b745 100644 --- a/tools/respond.c +++ b/tools/respond.c @@ -156,7 +156,7 @@ main(int argc, char **argv) return 0; } - SSLeay_add_all_ciphers(); + OpenSSL_add_all_ciphers(); rsa = PEM_read_RSAPrivateKey(kfile, NULL,pass_cb, NULL); if (!rsa) |