From 5cf1d3b36160d877177e98288c6766afecf7fe5a Mon Sep 17 00:00:00 2001 From: tb <> Date: Mon, 17 Apr 2023 05:57:17 +0000 Subject: Fix whitespace in DHparam_print_fp() --- src/lib/libcrypto/dh/dh_ameth.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/lib/libcrypto/dh/dh_ameth.c b/src/lib/libcrypto/dh/dh_ameth.c index f1e15762a1..3de0bb9333 100644 --- a/src/lib/libcrypto/dh/dh_ameth.c +++ b/src/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; } -- cgit v1.2.3-55-g6feb