From f3611c2773c95128166e1fd84726a2f3da50629b Mon Sep 17 00:00:00 2001 From: Gunter Knauf Date: Sat, 5 Sep 2009 15:12:30 +0000 Subject: 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. --- ares/ares_parse_srv_reply.3 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ares/ares_parse_srv_reply.3') diff --git a/ares/ares_parse_srv_reply.3 b/ares/ares_parse_srv_reply.3 index 8f3edf4f4..a83d480a3 100644 --- a/ares/ares_parse_srv_reply.3 +++ b/ares/ares_parse_srv_reply.3 @@ -49,9 +49,9 @@ contains the following fields: .in +4n .nf struct srv_reply { - u_int16_t weight; - u_int16_t priority; - u_int16_t port; + unsigned short weight; + unsigned short priority; + unsigned short port; char *host; }; .fi -- cgit v1.2.3