Skip to content

Commit

Permalink
nss: do not fail if a CRL is already cached
Browse files Browse the repository at this point in the history
This fixes a copy-paste mistake from commit 2968f95.
  • Loading branch information
kdudka committed Oct 8, 2014
1 parent 548811c commit 9e37a7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE-NOTES
Expand Up @@ -22,6 +22,7 @@ This release includes the following bugfixes:
o configure: allow --with-ca-path with PolarSSL too
o HTTP/2: Fix busy loop when EOF is encountered
o CURLOPT_CAPATH: return failure if set without backend support
o nss: do not fail if a CRL is already cached

This release includes the following known bugs:

Expand Down
2 changes: 1 addition & 1 deletion lib/vtls/nss.c
Expand Up @@ -448,7 +448,7 @@ static CURLcode nss_cache_crl(SECItem *crl_der)
/* CRL already cached */
SEC_DestroyCrl(crl);
SECITEM_FreeItem(crl_der, PR_TRUE);
return CURLE_SSL_CRL_BADFILE;
return CURLE_OK;
}

/* acquire lock before call of CERT_CacheCRL() and accessing nss_crl_list */
Expand Down

0 comments on commit 9e37a7f

Please sign in to comment.