From: <dat...@us...> - 2006-11-05 08:22:44
|
Revision: 17669 http://svn.sourceforge.net/gaim/?rev=17669&view=rev Author: datallah Date: 2006-11-05 00:22:33 -0800 (Sun, 05 Nov 2006) Log Message: ----------- Vista needs a bigger buffer for the NLA lookup stuff. This will fix network detection on Vista. Modified Paths: -------------- trunk/libgaim/network.c Modified: trunk/libgaim/network.c =================================================================== --- trunk/libgaim/network.c 2006-11-05 00:11:52 UTC (rev 17668) +++ trunk/libgaim/network.c 2006-11-05 08:22:33 UTC (rev 17669) @@ -409,7 +409,7 @@ return -1; } else { - char buf[1024]; + char buf[4096]; WSAQUERYSET *res = (LPWSAQUERYSET) buf; DWORD size = sizeof(buf); while ((retval = WSALookupServiceNext(h, 0, &size, res)) == ERROR_SUCCESS) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |