summaryrefslogtreecommitdiff
path: root/src/lib/libssl/bio_ssl.c
diff options
context:
space:
mode:
authorjsing <>2021-06-11 11:13:53 +0000
committerjsing <>2021-06-11 11:13:53 +0000
commita58ba8a1624712a3054ab9a7f4b766d24aabab85 (patch)
tree9d771736dfbd202dc6e37f187e50d48e657b90db /src/lib/libssl/bio_ssl.c
parente4b379651419e90f99fe07dd3514e4eeaa225d56 (diff)
downloadopenbsd-a58ba8a1624712a3054ab9a7f4b766d24aabab85.tar.gz
openbsd-a58ba8a1624712a3054ab9a7f4b766d24aabab85.tar.bz2
openbsd-a58ba8a1624712a3054ab9a7f4b766d24aabab85.zip
Indent all labels with a single space.
This ensures that diff reports the correct function prototype. Prompted by tb@
Diffstat (limited to 'src/lib/libssl/bio_ssl.c')
-rw-r--r--src/lib/libssl/bio_ssl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/bio_ssl.c b/src/lib/libssl/bio_ssl.c
index 93cfa0d2a4..460b09fd87 100644
--- a/src/lib/libssl/bio_ssl.c
+++ b/src/lib/libssl/bio_ssl.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bio_ssl.c,v 1.29 2018/08/24 20:30:21 tb Exp $ */ 1/* $OpenBSD: bio_ssl.c,v 1.30 2021/06/11 11:13:53 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 *
@@ -509,7 +509,7 @@ BIO_new_buffer_ssl_connect(SSL_CTX *ctx)
509 goto err; 509 goto err;
510 return (ret); 510 return (ret);
511 511
512err: 512 err:
513 BIO_free(buf); 513 BIO_free(buf);
514 BIO_free(ssl); 514 BIO_free(ssl);
515 return (NULL); 515 return (NULL);
@@ -528,7 +528,7 @@ BIO_new_ssl_connect(SSL_CTX *ctx)
528 goto err; 528 goto err;
529 return (ret); 529 return (ret);
530 530
531err: 531 err:
532 BIO_free(con); 532 BIO_free(con);
533 BIO_free(ssl); 533 BIO_free(ssl);
534 return (NULL); 534 return (NULL);
@@ -553,7 +553,7 @@ BIO_new_ssl(SSL_CTX *ctx, int client)
553 BIO_set_ssl(ret, ssl, BIO_CLOSE); 553 BIO_set_ssl(ret, ssl, BIO_CLOSE);
554 return (ret); 554 return (ret);
555 555
556err: 556 err:
557 BIO_free(ret); 557 BIO_free(ret);
558 return (NULL); 558 return (NULL);
559} 559}