summaryrefslogtreecommitdiff
path: root/dns/mydns-ng/files/patch-src_mydns_recursive.c
blob: b86c0f2b57dfa155bb9e2071271d1f6d6cc2b5c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
--- src/mydns/recursive.c.orig	Mon Apr 30 08:17:52 2007
+++ src/mydns/recursive.c	Mon Apr 30 08:22:13 2007
@@ -109,8 +109,7 @@
 #endif
 
 	/* Send to remote server */
-	if ((rv = sendto(t->recursive_fd, query, querylen, 0,
-						  (struct sockaddr *)&recursive_sa, sizeof(struct sockaddr_in))) != querylen)
+	if ((rv = send(t->recursive_fd, query, querylen, 0)) != querylen)
 	{
 		if (errno == EAGAIN)
 		{