diff options
author | Ted Lemon <source@isc.org> | 2000-02-01 03:19:56 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 2000-02-01 03:19:56 +0000 |
commit | cfdfb9f126bb8900fa60c4ac5c3326986e5708e7 (patch) | |
tree | 81707664b94650775286640e2dab3dbf9baee6c6 /common/dns.c | |
parent | fb6297b12be9c65634bd10f8effe1fe76bf07cba (diff) | |
download | isc-dhcp-cfdfb9f126bb8900fa60c4ac5c3326986e5708e7.tar.gz |
AIX and Digital Unix compatibility fixes.
Diffstat (limited to 'common/dns.c')
-rw-r--r-- | common/dns.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/common/dns.c b/common/dns.c index 22389baa..ddc917b5 100644 --- a/common/dns.c +++ b/common/dns.c @@ -22,7 +22,7 @@ #ifndef lint static char copyright[] = -"$Id: dns.c,v 1.14 2000/01/26 14:55:34 mellon Exp $ Copyright (c) 1997 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dns.c,v 1.15 2000/02/01 03:19:38 mellon Exp $ Copyright (c) 1997 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -444,7 +444,8 @@ void dns_packet (protocol) u_int16_t class; TIME ttl; u_int16_t rdlength; - int len, status; + socklen_t len; + int status; int i; struct dns_query *query; |