X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fdso%2Fdso_null.c;h=49d842d1f567fd79124074a9f4c69871f79039ba;hb=fda29b6db038716e4409068798646c6db042e552;hp=79e6eddca29e00ed075f3eaae3c8144d83acc11a;hpb=b9e6391582c1a2c8ff6ebc96d7a2abb7483def2a;p=oweals%2Fopenssl.git diff --git a/crypto/dso/dso_null.c b/crypto/dso/dso_null.c index 79e6eddca2..49d842d1f5 100644 --- a/crypto/dso/dso_null.c +++ b/crypto/dso/dso_null.c @@ -67,14 +67,20 @@ static DSO_METHOD dso_meth_null = { "NULL shared library method", NULL, /* load */ NULL, /* unload */ - NULL, /* bind */ + NULL, /* bind_var */ + NULL, /* bind_func */ /* For now, "unbind" doesn't exist */ #if 0 - NULL, /* unbind */ + NULL, /* unbind_var */ + NULL, /* unbind_func */ #endif NULL, /* ctrl */ + NULL, /* dso_name_converter */ + NULL, /* dso_merger */ NULL, /* init */ - NULL /* finish */ + NULL, /* finish */ + NULL, /* pathbyaddr */ + NULL /* globallookup */ }; DSO_METHOD *DSO_METHOD_null(void)