summaryrefslogtreecommitdiff
path: root/nanoftp.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2012-04-02 15:45:13 +0800
committerDaniel Veillard <veillard@redhat.com>2012-04-02 15:45:13 +0800
commitac17e5939c032e547cf5a6325223ff5eb08e04b1 (patch)
treeeded2190ba8ce5f1a5aa1fd69cb4e90866a16945 /nanoftp.c
parentbdc64d6d5f5f30982279af23cfa2d3ab08ba34c4 (diff)
downloadlibxml2-ac17e5939c032e547cf5a6325223ff5eb08e04b1.tar.gz
Remove two references to u_short
Diffstat (limited to 'nanoftp.c')
-rw-r--r--nanoftp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nanoftp.c b/nanoftp.c
index a7ca5b6b..9b32d663 100644
--- a/nanoftp.c
+++ b/nanoftp.c
@@ -947,7 +947,8 @@ xmlNanoFTPConnect(void *ctx) {
((struct sockaddr_in *)&ctxt->ftpAddr)->sin_family = AF_INET;
memcpy (&((struct sockaddr_in *)&ctxt->ftpAddr)->sin_addr,
hp->h_addr_list[0], hp->h_length);
- ((struct sockaddr_in *)&ctxt->ftpAddr)->sin_port = (u_short)htons ((unsigned short)port);
+ ((struct sockaddr_in *)&ctxt->ftpAddr)->sin_port =
+ (unsigned short)htons ((unsigned short)port);
ctxt->controlFd = socket (AF_INET, SOCK_STREAM, 0);
addrlen = sizeof (struct sockaddr_in);
}