freebsd-ports/dns/mydns/files/patch-src_mydns_recursive.c
Alex Dupre be9a91167f Fix recursive resolver.
Submitted by:	Pietro Celentano <pcelentano@tiscalinet.it>
2007-04-30 07:33:13 +00:00

12 lines
409 B
C

--- 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)
{