summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/dso/dso_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/dso/dso_null.c')
-rw-r--r--src/lib/libcrypto/dso/dso_null.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libcrypto/dso/dso_null.c b/src/lib/libcrypto/dso/dso_null.c
index 49d842d1f5..0c877ab2f2 100644
--- a/src/lib/libcrypto/dso/dso_null.c
+++ b/src/lib/libcrypto/dso/dso_null.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
@@ -81,10 +81,10 @@ static DSO_METHOD dso_meth_null = {
81 NULL, /* finish */ 81 NULL, /* finish */
82 NULL, /* pathbyaddr */ 82 NULL, /* pathbyaddr */
83 NULL /* globallookup */ 83 NULL /* globallookup */
84 }; 84};
85
86DSO_METHOD *DSO_METHOD_null(void)
87 {
88 return(&dso_meth_null);
89 }
90 85
86DSO_METHOD *
87DSO_METHOD_null(void)
88{
89 return (&dso_meth_null);
90}