https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4eace8d762426e9ca7de0b...
commit 4eace8d762426e9ca7de0b357eb92d17299d9a9b Author: Doug Lyons douglyons@douglyons.com AuthorDate: Thu Oct 26 11:45:44 2023 -0500 Commit: GitHub noreply@github.com CommitDate: Thu Oct 26 16:45:44 2023 +0000
[IPHLPAPI] Silence obsolete FIXME in GetAdaptersAddresses (#5834) --- dll/win32/iphlpapi/address.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dll/win32/iphlpapi/address.c b/dll/win32/iphlpapi/address.c index fb40963c7d4..e3ac92588c5 100644 --- a/dll/win32/iphlpapi/address.c +++ b/dll/win32/iphlpapi/address.c @@ -331,8 +331,8 @@ GetAdaptersAddresses( DWORD MIN_SIZE = 15 * 1024; PIP_ADAPTER_ADDRESSES PreviousAA = NULL;
- FIXME("GetAdaptersAddresses - Semi Stub: Family %u, Flags 0x%08x, Reserved %p, pAdapterAddress %p, pOutBufLen %p.\n", - Family, Flags, Reserved, pAdapterAddresses, pOutBufLen); + TRACE("Family %u, Flags 0x%08x, Reserved %p, pAdapterAddress %p, pOutBufLen %p\n", + Family, Flags, Reserved, pAdapterAddresses, pOutBufLen);
if (!pOutBufLen) return ERROR_INVALID_PARAMETER;