Fix error.c

This commit is contained in:
2023-01-09 22:45:37 +01:00
parent af62a3065a
commit 0730429041

View File

@ -10,6 +10,7 @@
#include "http.h" #include "http.h"
#include <errno.h> #include <errno.h>
#include <string.h>
#include <openssl/ssl.h> #include <openssl/ssl.h>
#include <openssl/err.h> #include <openssl/err.h>
#include <maxminddb.h> #include <maxminddb.h>
@ -34,8 +35,8 @@ static const char *error_ssl_strerror(int err) {
return "want async job"; return "want async job";
case SSL_ERROR_WANT_CLIENT_HELLO_CB: case SSL_ERROR_WANT_CLIENT_HELLO_CB:
return "want client hello callback"; return "want client hello callback";
case SSL_ERROR_WANT_RETRY_VERIFY: //case SSL_ERROR_WANT_RETRY_VERIFY:
return "want retry verify"; // return "want retry verify";
case SSL_ERROR_SSL: case SSL_ERROR_SSL:
return ERR_reason_error_string(ERR_get_error()); return ERR_reason_error_string(ERR_get_error());
default: default: