svn commit: r1933836 - in apr/apr/branches/1.7.x: . misc/win32

[email protected] Mon, 04 May 2026 21:41:06 -0000
Newsgroups gmane.comp.apache.apr.cvs
Message-ID <177793086668.2700527.13223244082033917991@svn03-he-fi>
Author: ivan
Date: Mon May  4 21:41:06 2026
New Revision: 1933836

Log:
Merged r1933835 from apr/apr/trunk:
  Fix typo in the name of the delay-loaded DLL "Iphlpapi.dll". Due to this typo,
  the functions if_indextoname and if_nametoindex were never called on Windows.

Modified:
   apr/apr/branches/1.7.x/   (props changed)
   apr/apr/branches/1.7.x/misc/win32/misc.c

Modified: apr/apr/branches/1.7.x/misc/win32/misc.c
==============================================================================
--- apr/apr/branches/1.7.x/misc/win32/misc.c	Mon May  4 21:33:59 2026	(r1933835)
+++ apr/apr/branches/1.7.x/misc/win32/misc.c	Mon May  4 21:41:06 2026	(r1933836)
@@ -173,7 +173,7 @@ static win32_late_dll_t late_dll[DLL_def
     {"ws2_32", INVALID_HANDLE_VALUE},
     {"shell32", INVALID_HANDLE_VALUE},
     {"ntdll.dll", INVALID_HANDLE_VALUE},
-    {"Iphplapi", INVALID_HANDLE_VALUE}
+    {"Iphlpapi", INVALID_HANDLE_VALUE}
 };
 
 FARPROC apr_load_dll_func(apr_dlltoken_e fnLib, char* fnName, int ordinal)