fix warnings when building openssl with the following compiler options:
[oweals/openssl.git] / crypto / dso / dso_null.c
index 79e6eddca29e00ed075f3eaae3c8144d83acc11a..a213f930888fbc19643e8fef28cb9351cc047b6c 100644 (file)
@@ -67,14 +67,19 @@ 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 */
        };
 
 DSO_METHOD *DSO_METHOD_null(void)