remove all uses of uint32_t

Previous fix forgot a few.

Signed-off-by: Ben Greear <greearb@candelatech.com>
pull/1/head
Ben Greear 15 years ago
parent 03c1378e84
commit f575aea364
  1. 2
      ares_init.c
  2. 2
      ares_set_local_ip4.3

@ -1612,7 +1612,7 @@ unsigned short ares__generate_new_id(rc4_key* key)
return r;
}
void ares_set_local_ip4(ares_channel channel, uint32_t local_ip)
void ares_set_local_ip4(ares_channel channel, unsigned int local_ip)
{
channel->local_ip4 = local_ip;
}

@ -20,7 +20,7 @@ ares_set_local_ip4 \- Set local IPv4 address outgoing requests.
.nf
.B #include <ares.h>
.PP
.B void ares_set_local_ip4(ares_channel \fIchannel\fP, uint32_t \fIlocal_ip\fP)
.B void ares_set_local_ip4(ares_channel \fIchannel\fP, unsigned int \fIlocal_ip\fP)
.fi
.SH DESCRIPTION
The \fBares_set_local_ip4\fP function sets the IP address for outbound

Loading…
Cancel
Save