diff options
author | Jake Burkholder <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
---|---|---|
committer | Jake Burkholder <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
commit | 740a1973a62eaa8e1dc23e22f84dacb3346d303a (patch) | |
tree | acf054a865eef37380f5ac3d3c07766b5bb234b0 /usr.sbin/ypserv/yp_dnslookup.c | |
parent | b4183771fd8ab7a5946fd38df04c1e24b1268bea (diff) |
Change the way that the queue(3) structures are declared; don't assume that
the type argument to *_HEAD and *_ENTRY is a struct.
Suggested by: phk
Reviewed by: phk
Approved by: mdodd
Notes
Notes:
svn path=/head/; revision=60833
Diffstat (limited to 'usr.sbin/ypserv/yp_dnslookup.c')
-rw-r--r-- | usr.sbin/ypserv/yp_dnslookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ypserv/yp_dnslookup.c b/usr.sbin/ypserv/yp_dnslookup.c index 3a62694033ae..1ef76aa114cf 100644 --- a/usr.sbin/ypserv/yp_dnslookup.c +++ b/usr.sbin/ypserv/yp_dnslookup.c @@ -105,7 +105,7 @@ static char *parse(hp) extern struct hostent *__dns_getanswer __P((char *, int, char *, int)); -static CIRCLEQ_HEAD(dns_qhead, circleq_dnsentry) qhead; +static CIRCLEQ_HEAD(dns_qhead, struct circleq_dnsentry) qhead; struct circleq_dnsentry { SVCXPRT *xprt; @@ -119,7 +119,7 @@ struct circleq_dnsentry { char **domain; char *name; struct in_addr addr; - CIRCLEQ_ENTRY(circleq_dnsentry) links; + CIRCLEQ_ENTRY(struct circleq_dnsentry) links; }; static int pending = 0; |