Skip to content

Commit

Permalink
DANE: treat "no action taken" response from library as a non-error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Harris committed Apr 21, 2016
1 parent 60f914b commit c035b64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/src/tls-openssl.c
Expand Up @@ -1962,8 +1962,8 @@ for (rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS);
switch (DANESSL_add_tlsa(ssl, usage, selector, mdname, p, rr->size - 3))
{
default:
case 0: /* action not taken */
return tls_error(US"tlsa load", host, NULL);
case 0: /* action not taken */
case 1: break;
}

Expand Down

0 comments on commit c035b64

Please sign in to comment.