summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsing <>2015-04-11 15:41:57 +0000
committerjsing <>2015-04-11 15:41:57 +0000
commit0a2c31c8f577b7611e81418bbe11b6a748f005ca (patch)
treeb7bd99c85189c8cf40f3a87e2c0d31e096401001
parentb70f6df50abc2463189672756ec288ee88ece543 (diff)
downloadopenbsd-0a2c31c8f577b7611e81418bbe11b6a748f005ca.tar.gz
openbsd-0a2c31c8f577b7611e81418bbe11b6a748f005ca.tar.bz2
openbsd-0a2c31c8f577b7611e81418bbe11b6a748f005ca.zip
Put back a goto end that was unintentionally removed.
Spotted by doug@
-rw-r--r--src/usr.bin/openssl/pkeyparam.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/usr.bin/openssl/pkeyparam.c b/src/usr.bin/openssl/pkeyparam.c
index 2521362804..b4369298a8 100644
--- a/src/usr.bin/openssl/pkeyparam.c
+++ b/src/usr.bin/openssl/pkeyparam.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: pkeyparam.c,v 1.4 2015/04/11 15:21:42 jsing Exp $ */ 1/* $OpenBSD: pkeyparam.c,v 1.5 2015/04/11 15:41:57 jsing Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2006 3 * project 2006
4 */ 4 */
@@ -147,6 +147,7 @@ pkeyparam_main(int argc, char **argv)
147 if (!(in = BIO_new_file(pkeyparam_config.infile, "r"))) { 147 if (!(in = BIO_new_file(pkeyparam_config.infile, "r"))) {
148 BIO_printf(bio_err, "Can't open input file %s\n", 148 BIO_printf(bio_err, "Can't open input file %s\n",
149 pkeyparam_config.infile); 149 pkeyparam_config.infile);
150 goto end;
150 } 151 }
151 } else 152 } else
152 in = BIO_new_fp(stdin, BIO_NOCLOSE); 153 in = BIO_new_fp(stdin, BIO_NOCLOSE);