summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/usr.bin/openssl/crl.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/usr.bin/openssl/crl.c b/src/usr.bin/openssl/crl.c
index e64038dfda..54314bee73 100644
--- a/src/usr.bin/openssl/crl.c
+++ b/src/usr.bin/openssl/crl.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: crl.c,v 1.17 2023/03/06 14:32:05 tb Exp $ */ 1/* $OpenBSD: crl.c,v 1.18 2026/05/09 14:28:18 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -327,10 +327,11 @@ crl_main(int argc, char **argv)
327 EVP_PKEY_free(pkey); 327 EVP_PKEY_free(pkey);
328 if (i < 0) 328 if (i < 0)
329 goto end; 329 goto end;
330 if (i == 0) 330 if (i == 0) {
331 BIO_printf(bio_err, "verify failure\n"); 331 BIO_printf(bio_err, "verify failure\n");
332 else 332 goto end;
333 BIO_printf(bio_err, "verify OK\n"); 333 }
334 BIO_printf(bio_err, "verify OK\n");
334 } 335 }
335 336
336 /* Print requested information the order that the flags were given. */ 337 /* Print requested information the order that the flags were given. */