summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 1d1b98d..61f0be1 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 (*((uint16_t *)aptr));
- aptr += sizeof(uint16_t);
- srv[i].weight = ntohs (*((uint16_t *)aptr));
- aptr += sizeof(uint16_t);
- srv[i].port = ntohs (*((uint16_t *)aptr));
- aptr += sizeof(uint16_t);
+ 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);
status = ares_expand_name (aptr, abuf, alen, &srv[i].host, &len);
if (status != ARES_SUCCESS)