From: tb Date: Mon, 17 Apr 2023 05:57:17 +0000 (+0000) Subject: Fix whitespace in DHparam_print_fp() X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=28db4cbb6bca7be3405bc00d48abcc7c768c5018;p=openbsd Fix whitespace in DHparam_print_fp() --- 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; }