diff options
author | jsing <> | 2014-04-15 13:42:55 +0000 |
---|---|---|
committer | jsing <> | 2014-04-15 13:42:55 +0000 |
commit | 69a8d2dcc19aed0d1116ba2ecd81cce5ae736c94 (patch) | |
tree | f085d85cb06e6b6e1a1b1d52cced54d9f7d7e5f2 /src/lib/libcrypto/o_init.c | |
parent | c7fdfc89ee30180bf262c4b146c1b6e1030083d6 (diff) | |
download | openbsd-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.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 | |||