diff options
Diffstat (limited to 'src/lib/libcrypto/dso/dso_null.c')
-rw-r--r-- | src/lib/libcrypto/dso/dso_null.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/src/lib/libcrypto/dso/dso_null.c b/src/lib/libcrypto/dso/dso_null.c index 0c877ab2f2..c9f4226cb5 100644 --- a/src/lib/libcrypto/dso/dso_null.c +++ b/src/lib/libcrypto/dso/dso_null.c | |||
@@ -64,23 +64,7 @@ | |||
64 | #include <openssl/dso.h> | 64 | #include <openssl/dso.h> |
65 | 65 | ||
66 | static DSO_METHOD dso_meth_null = { | 66 | static DSO_METHOD dso_meth_null = { |
67 | "NULL shared library method", | 67 | .name = "NULL shared library method" |
68 | NULL, /* load */ | ||
69 | NULL, /* unload */ | ||
70 | NULL, /* bind_var */ | ||
71 | NULL, /* bind_func */ | ||
72 | /* For now, "unbind" doesn't exist */ | ||
73 | #if 0 | ||
74 | NULL, /* unbind_var */ | ||
75 | NULL, /* unbind_func */ | ||
76 | #endif | ||
77 | NULL, /* ctrl */ | ||
78 | NULL, /* dso_name_converter */ | ||
79 | NULL, /* dso_merger */ | ||
80 | NULL, /* init */ | ||
81 | NULL, /* finish */ | ||
82 | NULL, /* pathbyaddr */ | ||
83 | NULL /* globallookup */ | ||
84 | }; | 68 | }; |
85 | 69 | ||
86 | DSO_METHOD * | 70 | DSO_METHOD * |