35 lines
955 B
Diff
35 lines
955 B
Diff
From 283af4cd77058ba7fea8cff59c83d3f3f0231f9f Mon Sep 17 00:00:00 2001
|
|
From: Dmitry Baryshkov <dbaryshkov@gmail.com>
|
|
Date: Tue, 10 Mar 2020 22:41:54 +0300
|
|
Subject: [PATCH] x509: apply same fix to print_crl
|
|
|
|
Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
|
|
---
|
|
lib/x509/output.c | 7 +++----
|
|
1 file changed, 3 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/lib/x509/output.c b/lib/x509/output.c
|
|
index 6f829b06ac..c54902fe4d 100644
|
|
--- a/lib/x509/output.c
|
|
+++ b/lib/x509/output.c
|
|
@@ -2290,14 +2290,13 @@ print_crl(gnutls_buffer_st * str, gnutls_x509_crl_t crl, int notsigned)
|
|
oid,
|
|
&sizeof_oid,
|
|
&critical);
|
|
+ if (err == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
|
|
+ break;
|
|
if (err < 0) {
|
|
- if (err ==
|
|
- GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
|
|
- break;
|
|
addf(str,
|
|
"error: get_extension_info: %s\n",
|
|
gnutls_strerror(err));
|
|
- continue;
|
|
+ break;
|
|
}
|
|
|
|
if (i == 0)
|
|
--
|
|
2.26.2
|