diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-01-31 13:54:12 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-01-31 13:54:12 +0000 |
commit | c41c5a0ef236f1eb1a973eeb25f47e848c9e68db (patch) | |
tree | 319694e18aded30c73897fb4b776311f54c807a5 /lib/telnet.c | |
parent | c0c0283356f288ba98e374964231007f623e84cd (diff) | |
download | curl-c41c5a0ef236f1eb1a973eeb25f47e848c9e68db.tar.gz |
curl_read() and Curl_read() now have ssize_t in the last argument
Diffstat (limited to 'lib/telnet.c')
-rw-r--r-- | lib/telnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/telnet.c b/lib/telnet.c index 9deb13d75..201bd6b50 100644 --- a/lib/telnet.c +++ b/lib/telnet.c @@ -833,7 +833,7 @@ CURLcode Curl_telnet(struct connectdata *conn) bool keepon = TRUE; char *buf = data->buffer; - size_t nread; + ssize_t nread; init_telnet(data); |