]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
compiler warning fix
authorYang Tse <yangsita@gmail.com>
Tue, 20 Feb 2007 14:01:04 +0000 (14:01 +0000)
committerYang Tse <yangsita@gmail.com>
Tue, 20 Feb 2007 14:01:04 +0000 (14:01 +0000)
lib/socks.c

index accab029bd0c8f41d388e328bf291e0393723d7c..cd40d37e9058457043cf2392efb1df8756658929 100644 (file)
@@ -149,7 +149,7 @@ CURLcode Curl_SOCKS4(const char *proxy_name,
 
   socksreq[0] = 4; /* version (SOCKS4) */
   socksreq[1] = 1; /* connect */
-  *((unsigned short*)&socksreq[2]) = htons(remote_port);
+  *((unsigned short*)&socksreq[2]) = htons((unsigned short)remote_port);
 
   /* DNS resolve */
   {
@@ -552,7 +552,7 @@ CURLcode Curl_SOCKS5(const char *proxy_name,
     }
   }
 
-  *((unsigned short*)&socksreq[8]) = htons(remote_port);
+  *((unsigned short*)&socksreq[8]) = htons((unsigned short)remote_port);
 
   {
     const int packetsize = 10;