From fcc4a34712d83228e496267ec0e565bd98ca95dd Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 26 Sep 2009 06:50:06 +0000 Subject: [PATCH] - Don't modify the size for now until I figure out where the incorrect code is svn path=/trunk/; revision=43159 --- reactos/dll/win32/wshtcpip/wshtcpip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/wshtcpip/wshtcpip.c b/reactos/dll/win32/wshtcpip/wshtcpip.c index 7a3781b2724..91c7fbaee53 100644 --- a/reactos/dll/win32/wshtcpip/wshtcpip.c +++ b/reactos/dll/win32/wshtcpip/wshtcpip.c @@ -88,7 +88,7 @@ WSHGetBroadcastSockaddr( Sockaddr->sa_family = AF_INET; *((PUINT)Sockaddr->sa_data) = INADDR_BROADCAST; - *SockaddrLength = Size; + /* *SockaddrLength = Size; */ return NO_ERROR; } @@ -198,7 +198,7 @@ WSHGetWildcardSockaddr( Sockaddr->sa_family = AF_INET; *((PUINT)Sockaddr->sa_data) = INADDR_ANY; - *SockaddrLength = Size; + /* *SockaddrLength = Size; */ return NO_ERROR; }