Correct error return value from stub.

This commit is contained in:
Jim Hague 2018-12-07 17:56:12 +00:00
parent fee864c25c
commit 1acd880f26
1 changed files with 1 additions and 1 deletions

View File

@ -54,5 +54,5 @@ _getdns_associate_upstream_with_connection(_getdns_tls_connection *conn,
getdns_dict*
getdns_pubkey_pin_create_from_string(getdns_context* context, const char* str)
{
return GETDNS_RETURN_GENERIC_ERROR;
return NULL;
}