From: Ted Lemon Date: Wed, 17 Jan 2001 08:23:37 +0000 (+0000) Subject: Fix a type mismatch in calls to res_nsend*. X-Git-Tag: V3-BETA-2-PATCH-12~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e051ac991915dcad180b72b7d5dfed6a58ce197;p=thirdparty%2Fdhcp.git Fix a type mismatch in calls to res_nsend*. --- diff --git a/minires/res_sendsigned.c b/minires/res_sendsigned.c index 1c0c441fb..3ed456d0a 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 d7e4c8820..ffc384ab5 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;