summaryrefslogtreecommitdiff
path: root/misc/win32/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/win32/misc.c')
-rw-r--r--misc/win32/misc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/misc/win32/misc.c b/misc/win32/misc.c
index 337739ca1..7a80f4fe9 100644
--- a/misc/win32/misc.c
+++ b/misc/win32/misc.c
@@ -139,9 +139,11 @@ apr_status_t apr_get_oslevel(apr_oslevel_e *level)
*/
static const char* const lateDllName[DLL_defined] = {
- "kernel32", "advapi32", "mswsock", "ws2_32", "shell32", "ntdll.dll" };
+ "kernel32", "advapi32", "mswsock", "ws2_32", "shell32", "ntdll.dll",
+ "Iphplapi" };
static HMODULE lateDllHandle[DLL_defined] = {
- NULL, NULL, NULL, NULL, NULL, NULL };
+ NULL, NULL, NULL, NULL, NULL, NULL,
+ NULL };
FARPROC apr_load_dll_func(apr_dlltoken_e fnLib, char* fnName, int ordinal)
{