summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/dso/dso_openssl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/dso/dso_openssl.c')
-rw-r--r--src/lib/libcrypto/dso/dso_openssl.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/lib/libcrypto/dso/dso_openssl.c b/src/lib/libcrypto/dso/dso_openssl.c
index 75fdfbd0e1..b79151f3bb 100644
--- a/src/lib/libcrypto/dso/dso_openssl.c
+++ b/src/lib/libcrypto/dso/dso_openssl.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
@@ -62,13 +62,14 @@
62 62
63/* We just pinch the method from an appropriate "default" method. */ 63/* We just pinch the method from an appropriate "default" method. */
64 64
65DSO_METHOD *DSO_METHOD_openssl(void) 65DSO_METHOD *
66 { 66DSO_METHOD_openssl(void)
67{
67#ifdef DEF_DSO_METHOD 68#ifdef DEF_DSO_METHOD
68 return(DEF_DSO_METHOD()); 69 return (DEF_DSO_METHOD());
69#elif defined(DSO_DLFCN) 70#elif defined(DSO_DLFCN)
70 return(DSO_METHOD_dlfcn()); 71 return (DSO_METHOD_dlfcn());
71#else 72#else
72 return(DSO_METHOD_null()); 73 return (DSO_METHOD_null());
73#endif 74#endif
74 } 75}