2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-30 22:05:23 +00:00

Fix a type mismatch in calls to res_nsend*.

This commit is contained in:
Ted Lemon
2001-01-17 08:23:37 +00:00
parent 5f4cd0e99b
commit 9e051ac991
2 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ res_nsendsigned(res_state statp,
u_char sig[64]; u_char sig[64];
HEADER *hp; HEADER *hp;
time_t tsig_time; time_t tsig_time;
int ret; unsigned ret;
isc_result_t rcode; isc_result_t rcode;
dst_init(); dst_init();

View File

@@ -1,5 +1,5 @@
#if !defined(lint) && !defined(SABER) #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 */ #endif /* not lint */
/* /*
@@ -84,7 +84,7 @@ res_nupdate(res_state statp, ns_updrec *rrecp_in) {
struct zonegrp *zptr, tgrp; struct zonegrp *zptr, tgrp;
int nzones = 0, nscount = 0; int nzones = 0, nscount = 0;
unsigned n; unsigned n;
int rval; unsigned rval;
struct sockaddr_in nsaddrs[MAXNS]; struct sockaddr_in nsaddrs[MAXNS];
ns_tsig_key *key; ns_tsig_key *key;
void *zcookie = 0; void *zcookie = 0;