artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b6daaad
)
Fix whitespace in DHparam_print_fp()
author
tb
<tb@openbsd.org>
Mon, 17 Apr 2023 05:57:17 +0000
(
05:57
+0000)
committer
tb
<tb@openbsd.org>
Mon, 17 Apr 2023 05:57:17 +0000
(
05:57
+0000)
lib/libcrypto/dh/dh_ameth.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/dh/dh_ameth.c
b/lib/libcrypto/dh/dh_ameth.c
index
f1e1576
..
3de0bb9
100644
(file)
--- a/
lib/libcrypto/dh/dh_ameth.c
+++ b/
lib/libcrypto/dh/dh_ameth.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: dh_ameth.c,v 1.2
7 2023/04/17 05:51:16
tb Exp $ */
+/* $OpenBSD: dh_ameth.c,v 1.2
8 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;
}