summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2023-04-17 05:57:18 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2023-04-17 05:57:18 +0000
commit5f1598c82e51a0a5f100c8c9a3ec2f15d0bdd251 (patch)
tree92a47c0a1e36460ea82727505281538f43bb0e41
parent111d1cae86d93a327801541d87ba9296a2051858 (diff)
Fix whitespace in DHparam_print_fp()
-rw-r--r--lib/libcrypto/dh/dh_ameth.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libcrypto/dh/dh_ameth.c b/lib/libcrypto/dh/dh_ameth.c
index f1e15762a1e..3de0bb93333 100644
--- a/lib/libcrypto/dh/dh_ameth.c
+++ b/lib/libcrypto/dh/dh_ameth.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dh_ameth.c,v 1.27 2023/04/17 05:51:16 tb Exp $ */
+/* $OpenBSD: dh_ameth.c,v 1.28 2023/04/17 05:57:17 tb Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 2006.
*/
@@ -484,9 +484,11 @@ DHparams_print_fp(FILE *fp, const DH *x)
DHerror(ERR_R_BUF_LIB);
return 0;
}
- BIO_set_fp(b,fp,BIO_NOCLOSE);
+
+ BIO_set_fp(b, fp, BIO_NOCLOSE);
ret = DHparams_print(b, x);
BIO_free(b);
+
return ret;
}