[PATCH 1/1] iphlpapi: partially implement NotifyIpInterfaceChange

Joseph Kogut joseph.kogut at gmail.com
Mon Oct 14 21:25:39 CDT 2019


Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47935
Signed-off-by: Joseph Kogut <joseph.kogut at gmail.com>
---
 dlls/iphlpapi/iphlpapi_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c
index 1f823b401d..e0d2e2d60d 100644
--- a/dlls/iphlpapi/iphlpapi_main.c
+++ b/dlls/iphlpapi/iphlpapi_main.c
@@ -2755,10 +2755,10 @@ DWORD WINAPI NotifyAddrChange(PHANDLE Handle, LPOVERLAPPED overlapped)
 DWORD WINAPI NotifyIpInterfaceChange(ADDRESS_FAMILY family, PIPINTERFACE_CHANGE_CALLBACK callback,
                                      PVOID context, BOOLEAN init_notify, PHANDLE handle)
 {
-    FIXME("(family %d, callback %p, context %p, init_notify %d, handle %p): stub\n",
+    FIXME("(family %d, callback %p, context %p, init_notify %d, handle %p): hacked stub\n",
           family, callback, context, init_notify, handle);
     if (handle) *handle = NULL;
-    return ERROR_NOT_SUPPORTED;
+    return NO_ERROR;
 }
 
 
-- 
2.23.0




More information about the wine-devel mailing list