From: Dr. Stephen Henson Date: Sat, 4 Dec 2004 21:26:11 +0000 (+0000) Subject: In by_file.c check last error for no start line, not first error. X-Git-Tag: BEN_FIPS_TEST_6~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c98175bf88b7e15fe5ef3935f1901073c786b7f5;p=openssl In by_file.c check last error for no start line, not first error. --- diff --git a/crypto/x509/by_file.c b/crypto/x509/by_file.c index b4b04183d0..a5e0d4aefa 100644 --- a/crypto/x509/by_file.c +++ b/crypto/x509/by_file.c @@ -150,7 +150,7 @@ int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type) x=PEM_read_bio_X509_AUX(in,NULL,NULL,NULL); if (x == NULL) { - if ((ERR_GET_REASON(ERR_peek_error()) == + if ((ERR_GET_REASON(ERR_peek_last_error()) == PEM_R_NO_START_LINE) && (count > 0)) { ERR_clear_error(); @@ -217,7 +217,7 @@ int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type) x=PEM_read_bio_X509_CRL(in,NULL,NULL,NULL); if (x == NULL) { - if ((ERR_GET_REASON(ERR_peek_error()) == + if ((ERR_GET_REASON(ERR_peek_last_error()) == PEM_R_NO_START_LINE) && (count > 0)) { ERR_clear_error();