2
0
mirror of https://github.com/curl/curl.git synced 2025-04-24 16:40:32 +08:00

make the variables that hold the result of strlen() size_t

This commit is contained in:
Daniel Stenberg 2004-03-23 15:28:31 +00:00
parent f8426a2c44
commit c5637baa06

@ -856,8 +856,8 @@ static void suboption(struct connectdata *conn)
{
struct curl_slist *v;
unsigned char temp[2048];
int len;
int tmplen;
size_t len;
size_t tmplen;
char varname[128];
char varval[128];
struct SessionHandle *data = conn->data;