[WS2_32_NEW]

- Remove unnecessary dnsapi dependency
- Fix some comments and a DPRINT
Brought to you by Peter Hater.
CORE-10440

svn path=/trunk/; revision=69858
This commit is contained in:
Thomas Faber
2015-11-09 17:46:54 +00:00
parent d410f53b84
commit 94b3bf2df8
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -52,6 +52,6 @@ add_library(ws2_32_new SHARED
set_module_type(ws2_32_new win32dll)
target_link_libraries(ws2_32_new ${PSEH_LIB})
add_importlibs(ws2_32_new user32 advapi32 dnsapi ws2help msvcrt kernel32 ntdll)
add_importlibs(ws2_32_new user32 advapi32 ws2help msvcrt kernel32 ntdll)
add_pch(ws2_32_new inc/ws2_32.h SOURCE)
add_cd_file(TARGET ws2_32_new DESTINATION reactos/system32 FOR all)
+3 -3
View File
@@ -133,10 +133,10 @@ WsNqBeginEnumerationProc(PVOID Context,
/* Get the provider */
if (!(Provider = Entry->Provider))
{
/* None was laoded, load it */
/* None was loaded, load it */
if ((WsNcLoadProvider(EnumContext->Catalog, Entry) != ERROR_SUCCESS))
{
/* return fake success */
/* return TRUE to continue enumerating */
return TRUE;
}
@@ -447,7 +447,7 @@ WsNqLookupServiceBegin(IN PNSQUERY NsQuery,
}
else
{
/* Assume sucess */
/* Assume success */
ErrorCode = ERROR_SUCCESS;
}
+1 -1
View File
@@ -92,7 +92,7 @@ sendto(IN SOCKET s,
LPWSATHREADID ThreadId;
WSABUF Buffers;
DWORD BytesSent;
DPRINT("send: %lx, %lx, %lx, %p\n", s, flags, len, buf);
DPRINT("sendto: %lx, %lx, %lx, %p\n", s, flags, len, buf);
/* Check for WSAStartup */
if ((ErrorCode = WsQuickPrologTid(&ThreadId)) == ERROR_SUCCESS)