From: <dat...@us...> - 2006-12-12 16:20:52
|
Revision: 17974 http://svn.sourceforge.net/gaim/?rev=17974&view=rev Author: datallah Date: 2006-12-12 08:20:43 -0800 (Tue, 12 Dec 2006) Log Message: ----------- trime noticed that dns lookups don't work if you don't HAVE_GETADDRINFO; he? also submitted a patch to fix the bug. Modified Paths: -------------- trunk/libgaim/dnsquery.c Modified: trunk/libgaim/dnsquery.c =================================================================== --- trunk/libgaim/dnsquery.c 2006-12-12 08:53:35 UTC (rev 17973) +++ trunk/libgaim/dnsquery.c 2006-12-12 16:20:43 UTC (rev 17974) @@ -252,6 +252,7 @@ sin.sin_family = AF_INET; sin.sin_port = htons(dns_params.port); + write(child_out, &zero, sizeof(zero)); write(child_out, &addrlen, sizeof(addrlen)); write(child_out, &sin, addrlen); write(child_out, &zero, sizeof(zero)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |