summaryrefslogtreecommitdiff
path: root/ares_parse_srv_reply.c
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2009-09-05 15:12:30 +0000
committerGunter Knauf <gk@gknw.de>2009-09-05 15:12:30 +0000
commit091393e79ce1f2042c6f8febd70232dbcf3da95e (patch)
tree8f4f477683cd2c2a5ac30625739cc0ca29cd12e0 /ares_parse_srv_reply.c
parent6616621ffeff1d12b04627aa4ba98dee9187ce57 (diff)
downloadc-ares-091393e79ce1f2042c6f8febd70232dbcf3da95e.tar.gz
c-ares-091393e79ce1f2042c6f8febd70232dbcf3da95e.tar.bz2
c-ares-091393e79ce1f2042c6f8febd70232dbcf3da95e.zip
changed u_int16_t to unsigned short because it is the only place within ares and curl where such a type would be used;
also it broke many autobuilds. We should probably introduce an ares_port_t if we want to use a type here.
Diffstat (limited to 'ares_parse_srv_reply.c')
-rw-r--r--ares_parse_srv_reply.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ares_parse_srv_reply.c b/ares_parse_srv_reply.c
index 61f0be1..5b1e218 100644
--- a/ares_parse_srv_reply.c
+++ b/ares_parse_srv_reply.c
@@ -120,12 +120,12 @@ ares_parse_srv_reply (const unsigned char *abuf, int alen,
break;
}
- srv[i].priority = ntohs (*((u_int16_t *)aptr));
- aptr += sizeof(u_int16_t);
- srv[i].weight = ntohs (*((u_int16_t *)aptr));
- aptr += sizeof(u_int16_t);
- srv[i].port = ntohs (*((u_int16_t *)aptr));
- aptr += sizeof(u_int16_t);
+ srv[i].priority = ntohs (*((unsigned short *)aptr));
+ aptr += sizeof(unsigned short);
+ srv[i].weight = ntohs (*((unsigned short *)aptr));
+ aptr += sizeof(unsigned short);
+ srv[i].port = ntohs (*((unsigned short *)aptr));
+ aptr += sizeof(unsigned short);
status = ares_expand_name (aptr, abuf, alen, &srv[i].host, &len);
if (status != ARES_SUCCESS)