summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/o_init.c
diff options
context:
space:
mode:
authorjsing <>2014-04-15 13:42:55 +0000
committerjsing <>2014-04-15 13:42:55 +0000
commit69a8d2dcc19aed0d1116ba2ecd81cce5ae736c94 (patch)
treef085d85cb06e6b6e1a1b1d52cced54d9f7d7e5f2 /src/lib/libcrypto/o_init.c
parentc7fdfc89ee30180bf262c4b146c1b6e1030083d6 (diff)
downloadopenbsd-69a8d2dcc19aed0d1116ba2ecd81cce5ae736c94.tar.gz
openbsd-69a8d2dcc19aed0d1116ba2ecd81cce5ae736c94.tar.bz2
openbsd-69a8d2dcc19aed0d1116ba2ecd81cce5ae736c94.zip
First pass at applying KNF to the OpenSSL code, which almost makes it
readable. This pass is whitespace only and can readily be verified using tr and md5.
Diffstat (limited to 'src/lib/libcrypto/o_init.c')
-rw-r--r--src/lib/libcrypto/o_init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/o_init.c b/src/lib/libcrypto/o_init.c
index db4cdc443b..07c8e0d694 100644
--- a/src/lib/libcrypto/o_init.c
+++ b/src/lib/libcrypto/o_init.c
@@ -63,8 +63,9 @@
63 * Currently only sets FIPS callbacks 63 * Currently only sets FIPS callbacks
64 */ 64 */
65 65
66void OPENSSL_init(void) 66void
67 { 67OPENSSL_init(void)
68{
68 static int done = 0; 69 static int done = 0;
69 if (done) 70 if (done)
70 return; 71 return;
@@ -78,5 +79,4 @@ void OPENSSL_init(void)
78#if 0 79#if 0
79 fprintf(stderr, "Called OPENSSL_init\n"); 80 fprintf(stderr, "Called OPENSSL_init\n");
80#endif 81#endif
81 } 82}
82