From a58ba8a1624712a3054ab9a7f4b766d24aabab85 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Fri, 11 Jun 2021 11:13:53 +0000 Subject: Indent all labels with a single space. This ensures that diff reports the correct function prototype. Prompted by tb@ --- src/lib/libssl/ssl_rsa.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/lib/libssl/ssl_rsa.c') diff --git a/src/lib/libssl/ssl_rsa.c b/src/lib/libssl/ssl_rsa.c index bada2482f8..e3a1e5dc4b 100644 --- a/src/lib/libssl/ssl_rsa.c +++ b/src/lib/libssl/ssl_rsa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_rsa.c,v 1.33 2021/05/16 14:10:43 jsing Exp $ */ +/* $OpenBSD: ssl_rsa.c,v 1.34 2021/06/11 11:13:53 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -120,7 +120,7 @@ SSL_use_certificate_file(SSL *ssl, const char *file, int type) } ret = SSL_use_certificate(ssl, x); -end: + end: X509_free(x); BIO_free(in); return (ret); @@ -243,7 +243,7 @@ SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file, int type) } ret = SSL_use_RSAPrivateKey(ssl, rsa); RSA_free(rsa); -end: + end: BIO_free(in); return (ret); } @@ -312,7 +312,7 @@ SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type) } ret = SSL_use_PrivateKey(ssl, pkey); EVP_PKEY_free(pkey); -end: + end: BIO_free(in); return (ret); } @@ -436,7 +436,7 @@ SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type) } ret = SSL_CTX_use_certificate(ctx, x); -end: + end: X509_free(x); BIO_free(in); return (ret); @@ -517,7 +517,7 @@ SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file, int type) } ret = SSL_CTX_use_RSAPrivateKey(ctx, rsa); RSA_free(rsa); -end: + end: BIO_free(in); return (ret); } @@ -583,7 +583,7 @@ SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type) } ret = SSL_CTX_use_PrivateKey(ctx, pkey); EVP_PKEY_free(pkey); -end: + end: BIO_free(in); return (ret); } @@ -674,7 +674,7 @@ use_certificate_chain_file(const char *file, CERT *cert, ret = use_certificate_chain_bio(in, cert, passwd_cb, passwd_arg); -end: + end: BIO_free(in); return (ret); } @@ -711,7 +711,7 @@ SSL_CTX_use_certificate_chain_mem(SSL_CTX *ctx, void *buf, int len) ctx->default_passwd_callback, ctx->default_passwd_callback_userdata); -end: + end: BIO_free(in); return (ret); } -- cgit v1.2.3-55-g6feb