Fix for typo in certificate directory lookup code.
This commit is contained in:
parent
3ab5651112
commit
71d525c9f6
3
CHANGES
3
CHANGES
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
Changes between 0.9.6 and 0.9.7 [xx XXX 2000]
|
Changes between 0.9.6 and 0.9.7 [xx XXX 2000]
|
||||||
|
|
||||||
|
*) Fix typo in get_cert_by_subject() in by_dir.c
|
||||||
|
[Jean-Marc Desperrier <jean-marc.desperrier@certplus.com>]
|
||||||
|
|
||||||
*) Rework the system to generate shared libraries:
|
*) Rework the system to generate shared libraries:
|
||||||
|
|
||||||
- Make note of the expected extension for the shared libraries and
|
- Make note of the expected extension for the shared libraries and
|
||||||
|
@ -327,7 +327,7 @@ static int get_cert_by_subject(X509_LOOKUP *xl, int type, X509_NAME *name,
|
|||||||
* it out again */
|
* it out again */
|
||||||
CRYPTO_r_lock(CRYPTO_LOCK_X509_STORE);
|
CRYPTO_r_lock(CRYPTO_LOCK_X509_STORE);
|
||||||
j = sk_X509_OBJECT_find(xl->store_ctx->objs,&stmp);
|
j = sk_X509_OBJECT_find(xl->store_ctx->objs,&stmp);
|
||||||
if(j != -1) tmp=sk_X509_OBJECT_value(xl->store_ctx->objs,i);
|
if(j != -1) tmp=sk_X509_OBJECT_value(xl->store_ctx->objs,j);
|
||||||
else tmp = NULL;
|
else tmp = NULL;
|
||||||
CRYPTO_r_unlock(CRYPTO_LOCK_X509_STORE);
|
CRYPTO_r_unlock(CRYPTO_LOCK_X509_STORE);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user