From: Daniel Stenberg Date: Tue, 23 Mar 2004 15:28:31 +0000 (+0000) Subject: make the variables that hold the result of strlen() size_t X-Git-Tag: curl-7_11_2~217 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5637baa06046d317c383d420f6cbc9ddb3b0870;p=thirdparty%2Fcurl.git make the variables that hold the result of strlen() size_t --- diff --git a/lib/telnet.c b/lib/telnet.c index 6e1f52b7f7..aea7749751 100644 --- a/lib/telnet.c +++ b/lib/telnet.c @@ -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;