typecasts to prevent warnings

This commit is contained in:
Daniel Stenberg 2004-06-24 09:14:59 +00:00
parent 8d0a823124
commit 00ee738fdd
1 changed files with 4 additions and 4 deletions

View File

@ -1881,10 +1881,10 @@ static int handleSock5Proxy(const char *proxy_name,
if(4 == sscanf( buf, "%hu.%hu.%hu.%hu",
&ip[0], &ip[1], &ip[2], &ip[3])) {
socksreq[4] = ip[0];
socksreq[5] = ip[1];
socksreq[6] = ip[2];
socksreq[7] = ip[3];
socksreq[4] = (unsigned char)ip[0];
socksreq[5] = (unsigned char)ip[1];
socksreq[6] = (unsigned char)ip[2];
socksreq[7] = (unsigned char)ip[3];
}
else
hp = NULL; /* fail! */