Fix whitespace in DHparam_print_fp()
authortb <tb@openbsd.org>
Mon, 17 Apr 2023 05:57:17 +0000 (05:57 +0000)
committertb <tb@openbsd.org>
Mon, 17 Apr 2023 05:57:17 +0000 (05:57 +0000)
lib/libcrypto/dh/dh_ameth.c

index f1e1576..3de0bb9 100644 (file)
@@ -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;
 }