diff options
author | Ted Lemon <source@isc.org> | 2001-01-17 08:23:37 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 2001-01-17 08:23:37 +0000 |
commit | 9e051ac991915dcad180b72b7d5dfed6a58ce197 (patch) | |
tree | 2cad98ec6d67f715b1ddbcd099253a51651c5ef8 /minires | |
parent | 5f4cd0e99b99d9d6b292c7fb4aaa09fab6b00bfc (diff) | |
download | isc-dhcp-9e051ac991915dcad180b72b7d5dfed6a58ce197.tar.gz |
Fix a type mismatch in calls to res_nsend*.
Diffstat (limited to 'minires')
-rw-r--r-- | minires/res_sendsigned.c | 2 | ||||
-rw-r--r-- | minires/res_update.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/minires/res_sendsigned.c b/minires/res_sendsigned.c index 1c0c441f..3ed456d0 100644 --- a/minires/res_sendsigned.c +++ b/minires/res_sendsigned.c @@ -32,7 +32,7 @@ res_nsendsigned(res_state statp, u_char sig[64]; HEADER *hp; time_t tsig_time; - int ret; + unsigned ret; isc_result_t rcode; dst_init(); diff --git a/minires/res_update.c b/minires/res_update.c index d7e4c882..ffc384ab 100644 --- a/minires/res_update.c +++ b/minires/res_update.c @@ -1,5 +1,5 @@ #if !defined(lint) && !defined(SABER) -static const char rcsid[] = "$Id: res_update.c,v 1.10 2001/01/16 22:33:18 mellon Exp $"; +static const char rcsid[] = "$Id: res_update.c,v 1.11 2001/01/17 08:22:20 mellon Exp $"; #endif /* not lint */ /* @@ -84,7 +84,7 @@ res_nupdate(res_state statp, ns_updrec *rrecp_in) { struct zonegrp *zptr, tgrp; int nzones = 0, nscount = 0; unsigned n; - int rval; + unsigned rval; struct sockaddr_in nsaddrs[MAXNS]; ns_tsig_key *key; void *zcookie = 0; |