diff options
Diffstat (limited to 'util/net_help.c')
-rw-r--r-- | util/net_help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/net_help.c b/util/net_help.c index 49ce677..8c2bac7 100644 --- a/util/net_help.c +++ b/util/net_help.c @@ -699,7 +699,7 @@ void* connect_sslctx_create(char* key, char* pem, char* verifypem) } } if(verifypem && verifypem[0]) { - if(!SSL_CTX_load_verify_locations(ctx, verifypem, NULL) != 1) { + if(!SSL_CTX_load_verify_locations(ctx, verifypem, NULL)) { log_crypto_err("error in SSL_CTX verify"); SSL_CTX_free(ctx); return NULL; |