summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsing <>2019-11-04 15:34:27 +0000
committerjsing <>2019-11-04 15:34:27 +0000
commit473ff9fa422864f3113673306b8f6147b53d2237 (patch)
treee7a37144cd4631ac3eb95a9625178e66089dc6d6
parent2694c783105c877de263dde9372dedb0b2d08ce8 (diff)
downloadopenbsd-473ff9fa422864f3113673306b8f6147b53d2237.tar.gz
openbsd-473ff9fa422864f3113673306b8f6147b53d2237.tar.bz2
openbsd-473ff9fa422864f3113673306b8f6147b53d2237.zip
Indent labels for diffability.
Diffstat (limited to '')
-rw-r--r--src/usr.bin/openssl/cms.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/usr.bin/openssl/cms.c b/src/usr.bin/openssl/cms.c
index ad01c0413c..b36c08b209 100644
--- a/src/usr.bin/openssl/cms.c
+++ b/src/usr.bin/openssl/cms.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cms.c,v 1.12 2019/11/04 15:33:48 jsing Exp $ */ 1/* $OpenBSD: cms.c,v 1.13 2019/11/04 15:34:27 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. 3 * project.
4 */ 4 */
@@ -483,7 +483,7 @@ cms_main(int argc, char **argv)
483 badarg = 1; 483 badarg = 1;
484 484
485 if (badarg) { 485 if (badarg) {
486argerr: 486 argerr:
487 BIO_printf(bio_err, "Usage cms [options] cert.pem ...\n"); 487 BIO_printf(bio_err, "Usage cms [options] cert.pem ...\n");
488 BIO_printf(bio_err, "where options are\n"); 488 BIO_printf(bio_err, "where options are\n");
489 BIO_printf(bio_err, "-encrypt encrypt message\n"); 489 BIO_printf(bio_err, "-encrypt encrypt message\n");
@@ -936,7 +936,7 @@ argerr:
936 } 936 }
937 ret = 0; 937 ret = 0;
938 938
939end: 939 end:
940 if (ret) 940 if (ret)
941 ERR_print_errors(bio_err); 941 ERR_print_errors(bio_err);
942 942
@@ -1100,7 +1100,7 @@ make_names_stack(STACK_OF(OPENSSL_STRING) *ns)
1100 1100
1101 return ret; 1101 return ret;
1102 1102
1103err: 1103 err:
1104 sk_GENERAL_NAMES_pop_free(ret, GENERAL_NAMES_free); 1104 sk_GENERAL_NAMES_pop_free(ret, GENERAL_NAMES_free);
1105 GENERAL_NAMES_free(gens); 1105 GENERAL_NAMES_free(gens);
1106 GENERAL_NAME_free(gen); 1106 GENERAL_NAME_free(gen);
@@ -1129,7 +1129,7 @@ make_receipt_request(STACK_OF(OPENSSL_STRING) *rr_to, int rr_allorfirst,
1129 rct_to); 1129 rct_to);
1130 return rr; 1130 return rr;
1131 1131
1132err: 1132 err:
1133 return NULL; 1133 return NULL;
1134} 1134}
1135 1135