diff options
| author | 2025-05-16 12:20:56 +0100 | |
|---|---|---|
| committer | 2025-05-16 12:21:19 +0100 | |
| commit | 2889348d9a5cb831f0557bcb0af073b7ccca0dc5 (patch) | |
| tree | 3fa90a459e8dfbf45be53e34777fe0f6cfc6bd0f | |
| parent | Avoid `using namespace` in core_dns. (diff) | |
Fix building on Windows after the last commit.
| -rw-r--r-- | src/coremods/core_dns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_dns.cpp b/src/coremods/core_dns.cpp index 04ed7c5dc..237a5fc81 100644 --- a/src/coremods/core_dns.cpp +++ b/src/coremods/core_dns.cpp @@ -851,7 +851,7 @@ class ModuleDNS final if (pFixedInfo) { - if (GetNetworkParams(pFixedInfo, &dwBufferSize) == DNS::ERROR_BUFFER_OVERFLOW) + if (GetNetworkParams(pFixedInfo, &dwBufferSize) == ERROR_BUFFER_OVERFLOW) { HeapFree(GetProcessHeap(), 0, pFixedInfo); pFixedInfo = (PFIXED_INFO) HeapAlloc(GetProcessHeap(), 0, dwBufferSize); |
