diff options
Diffstat (limited to 'src/lib/libcrypto/o_init.c')
-rw-r--r-- | src/lib/libcrypto/o_init.c | 8 |
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 | ||
66 | void OPENSSL_init(void) | 66 | void |
67 | { | 67 | OPENSSL_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 | |||