diff options
Diffstat (limited to 'src/lib/libcrypto/conf/conf_mall.c')
-rw-r--r-- | src/lib/libcrypto/conf/conf_mall.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/conf/conf_mall.c b/src/lib/libcrypto/conf/conf_mall.c index c6f4cb2d55..8454d26fa8 100644 --- a/src/lib/libcrypto/conf/conf_mall.c +++ b/src/lib/libcrypto/conf/conf_mall.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * are met: | 10 | * are met: |
11 | * | 11 | * |
12 | * 1. Redistributions of source code must retain the above copyright | 12 | * 1. Redistributions of source code must retain the above copyright |
13 | * notice, this list of conditions and the following disclaimer. | 13 | * notice, this list of conditions and the following disclaimer. |
14 | * | 14 | * |
15 | * 2. Redistributions in binary form must reproduce the above copyright | 15 | * 2. Redistributions in binary form must reproduce the above copyright |
16 | * notice, this list of conditions and the following disclaimer in | 16 | * notice, this list of conditions and the following disclaimer in |
@@ -69,12 +69,12 @@ | |||
69 | 69 | ||
70 | /* Load all OpenSSL builtin modules */ | 70 | /* Load all OpenSSL builtin modules */ |
71 | 71 | ||
72 | void OPENSSL_load_builtin_modules(void) | 72 | void |
73 | { | 73 | OPENSSL_load_builtin_modules(void) |
74 | { | ||
74 | /* Add builtin modules here */ | 75 | /* Add builtin modules here */ |
75 | ASN1_add_oid_module(); | 76 | ASN1_add_oid_module(); |
76 | #ifndef OPENSSL_NO_ENGINE | 77 | #ifndef OPENSSL_NO_ENGINE |
77 | ENGINE_add_conf_module(); | 78 | ENGINE_add_conf_module(); |
78 | #endif | 79 | #endif |
79 | } | 80 | } |
80 | |||