mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-30 05:47:45 +00:00
Fix a type mismatch in calls to res_nsend*.
This commit is contained in:
parent
5f4cd0e99b
commit
9e051ac991
@ -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();
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user