Fix another stupid error....

This commit is contained in:
Sara Dickinson 2016-12-11 17:10:44 +00:00
parent d584c6e3f5
commit 83a0b944b5
1 changed files with 1 additions and 1 deletions

View File

@ -881,7 +881,7 @@ tls_verify_callback(int preverify_ok, X509_STORE_CTX *ctx)
* tls_auth_fail if there is a hostname provided*/
if (upstream->tls_auth_name[0]) {
upstream->tls_auth_state = GETDNS_AUTH_FAILED;
preverify_ok == 0;
preverify_ok = 0;
}
#endif