mirror of https://github.com/getdnsapi/getdns.git
Unused var compile warning in certain conditions
This commit is contained in:
parent
867d4d0db6
commit
6b2d9a2d70
|
@ -872,14 +872,16 @@ tls_auth_status_ok(getdns_upstream *upstream, getdns_network_req *netreq) {
|
||||||
int
|
int
|
||||||
tls_verify_callback(int preverify_ok, X509_STORE_CTX *ctx)
|
tls_verify_callback(int preverify_ok, X509_STORE_CTX *ctx)
|
||||||
{
|
{
|
||||||
int err;
|
|
||||||
getdns_upstream *upstream;
|
getdns_upstream *upstream;
|
||||||
getdns_return_t pinset_ret = GETDNS_RETURN_GOOD;
|
getdns_return_t pinset_ret = GETDNS_RETURN_GOOD;
|
||||||
|
|
||||||
err = X509_STORE_CTX_get_error(ctx);
|
#if defined(STUB_DEBUG) && STUB_DEBUG || defined(X509_V_ERR_HOSTNAME_MISMATCH)
|
||||||
upstream = _getdns_upstream_from_x509_store(ctx);
|
int err = X509_STORE_CTX_get_error(ctx);
|
||||||
|
|
||||||
DEBUG_STUB("--- %s, VERIFY RESULT: (%d) \"%s\"\n", __FUNCTION__,
|
DEBUG_STUB("--- %s, VERIFY RESULT: (%d) \"%s\"\n", __FUNCTION__,
|
||||||
err, X509_verify_cert_error_string(err));
|
err, X509_verify_cert_error_string(err));
|
||||||
|
#endif
|
||||||
|
upstream = _getdns_upstream_from_x509_store(ctx);
|
||||||
|
|
||||||
#ifdef X509_V_ERR_HOSTNAME_MISMATCH
|
#ifdef X509_V_ERR_HOSTNAME_MISMATCH
|
||||||
/*Report if error is hostname mismatch*/
|
/*Report if error is hostname mismatch*/
|
||||||
|
|
Loading…
Reference in New Issue