Update certificate hash line format to handle canonical format
[oweals/openssl.git] / crypto / dso / dso_dl.c
index 7c123c8580d6f233f4856c167bb46c48fb213993..fc4236bd9ab0b95312a2c87dee0cc60e95c6f5bb 100644 (file)
@@ -86,7 +86,7 @@ static int dl_ctrl(DSO *dso, int cmd, long larg, void *parg);
 static char *dl_name_converter(DSO *dso, const char *filename);
 static char *dl_merger(DSO *dso, const char *filespec1, const char *filespec2);
 static int dl_pathbyaddr(void *addr,char *path,int sz);
-static DSO_FUNC_TYPE dl_globallookup(const char *name);
+static void *dl_globallookup(const char *name);
 
 static DSO_METHOD dso_meth_dl = {
        "OpenSSL 'dl' shared library method",
@@ -383,9 +383,9 @@ static int dl_pathbyaddr(void *addr,char *path,int sz)
        return -1;
        }
 
-static DSO_FUNC_TYPE dl_globallookup(const char *name)
+static void *dl_globallookup(const char *name)
        {
-       DSO_FUNC_TYPE ret;
+       void *ret;
        shl_t h = NULL;
 
        return shl_findsym(&h,name,TYPE_UNDEFINED,&ret) ? NULL : ret;