From: Jeff Trawick Date: Sun, 30 Jul 2000 02:03:42 +0000 (+0000) Subject: Use ap_dso_error() instead of ap_strerror() when ap_dso_sym() fails. X-Git-Tag: APACHE_2_0_ALPHA_5~40 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d5ee92d684ece83d45cc42949fe543d0de456eb4;p=apache Use ap_dso_error() instead of ap_strerror() when ap_dso_sym() fails. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85946 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_so.c b/modules/mappers/mod_so.c index 7d192d9235..829f49c213 100644 --- a/modules/mappers/mod_so.c +++ b/modules/mappers/mod_so.c @@ -274,7 +274,7 @@ static const char *load_module(cmd_parms *cmd, void *dummy, return ap_pstrcat(cmd->pool, "Can't locate API module structure `", modname, "' in file ", szModuleFile, ": ", - ap_strerror(status, my_error, sizeof(my_error)), + ap_dso_error(modhandle, my_error, sizeof(my_error)), NULL); } modp = (module*) modsym;