From 9e051ac991915dcad180b72b7d5dfed6a58ce197 Mon Sep 17 00:00:00 2001 From: Ted Lemon Date: Wed, 17 Jan 2001 08:23:37 +0000 Subject: [PATCH] Fix a type mismatch in calls to res_nsend*. --- minires/res_sendsigned.c | 2 +- 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;