summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2000-05-27 07:01:20 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2000-05-27 07:01:20 +0000
commit7bbf8a16ae9b55feaa4050a8b3fdd31b00bd7ceb (patch)
treeacee053d26cec448840976fd0f41b2886c3b58b6
parent65586edfafbdda1b2060e0d964c5cf145d435e86 (diff)
downloadlibapr-7bbf8a16ae9b55feaa4050a8b3fdd31b00bd7ceb.tar.gz
PR:
Obtained from: Submitted by: Reviewed by: Just fixing a reference to an non-existant function on Win32... for an equally non-existant error for the Win32 dso. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60104 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--misc/unix/errorcodes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/misc/unix/errorcodes.c b/misc/unix/errorcodes.c
index 8522d2b3a..044c87d74 100644
--- a/misc/unix/errorcodes.c
+++ b/misc/unix/errorcodes.c
@@ -100,8 +100,10 @@ static char *apr_error_string(ap_status_t statcode)
return "No thread key structure was provided and one was required.";
case APR_ENOSHMAVAIL:
return "No shared memory is currently available";
+#ifndef WIN32
case APR_EDSOOPEN:
return dlerror();
+#endif
case APR_INCHILD:
return
"Your code just forked, and you are currently executing in the "