summaryrefslogtreecommitdiff
path: root/src/usr.bin/openssl/openssl.c
diff options
context:
space:
mode:
authorjsing <>2018-02-07 05:47:55 +0000
committerjsing <>2018-02-07 05:47:55 +0000
commit8b26a12dbe124fea0169712974ac2d8468e92dd9 (patch)
tree4fc27d43e8a00c73b96eeca6961a12b7a625e0c8 /src/usr.bin/openssl/openssl.c
parent8af3d9d9a31769e939636e3beaf236d858d41d19 (diff)
downloadopenbsd-8b26a12dbe124fea0169712974ac2d8468e92dd9.tar.gz
openbsd-8b26a12dbe124fea0169712974ac2d8468e92dd9.tar.bz2
openbsd-8b26a12dbe124fea0169712974ac2d8468e92dd9.zip
Indent labels with a single space so that diff prototypes are more useful.
Diffstat (limited to 'src/usr.bin/openssl/openssl.c')
-rw-r--r--src/usr.bin/openssl/openssl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr.bin/openssl/openssl.c b/src/usr.bin/openssl/openssl.c
index 346b1d83c7..b3e85d63ba 100644
--- a/src/usr.bin/openssl/openssl.c
+++ b/src/usr.bin/openssl/openssl.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: openssl.c,v 1.25 2017/01/20 08:57:12 deraadt Exp $ */ 1/* $OpenBSD: openssl.c,v 1.26 2018/02/07 05:47:55 jsing 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 *
@@ -385,7 +385,7 @@ lock_dbg_cb(int mode, int type, const char *file, int line)
385 goto err; 385 goto err;
386 } 386 }
387 387
388err: 388 err:
389 if (errstr) { 389 if (errstr) {
390 /* we cannot use bio_err here */ 390 /* we cannot use bio_err here */
391 fprintf(stderr, "openssl (lock_dbg_cb): %s (mode=%d, type=%d) at %s:%d\n", 391 fprintf(stderr, "openssl (lock_dbg_cb): %s (mode=%d, type=%d) at %s:%d\n",
@@ -560,7 +560,7 @@ main(int argc, char **argv)
560 BIO_printf(bio_err, "bad exit\n"); 560 BIO_printf(bio_err, "bad exit\n");
561 ret = 1; 561 ret = 1;
562 562
563end: 563 end:
564 free(to_free); 564 free(to_free);
565 565
566 if (config != NULL) { 566 if (config != NULL) {
@@ -707,7 +707,7 @@ do_cmd(LHASH_OF(FUNCTION) * prog, int argc, char *argv[])
707 BIO_printf(bio_err, "\n\n"); 707 BIO_printf(bio_err, "\n\n");
708 ret = 0; 708 ret = 0;
709 } 709 }
710end: 710 end:
711 return (ret); 711 return (ret);
712} 712}
713 713