1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

fix compiler warning

This commit is contained in:
Yang Tse 2008-01-14 19:40:10 +00:00
parent 69f685056d
commit 1d620a3df4

View File

@ -566,7 +566,7 @@ CURLcode Curl_SOCKS5(const char *proxy_name,
socksreq[2] = 0; /* must be zero */
if(!socks5_resolve_local) {
packetsize = 5 + hostname_len + 2;
packetsize = (ssize_t)(5 + hostname_len + 2);
socksreq[3] = 3; /* ATYP: domain name = 3 */
socksreq[4] = (char) hostname_len; /* address length */