diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-04-25 00:16:10 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-05-01 22:55:29 +0200 |
commit | f535f4f5fc6cbdce1aec5a3481cec37369dca468 (patch) | |
tree | 918a8b9043e6933a7ceacb4ac32b153b2f84c54c /lib/telnet.c | |
parent | 7c312f84ea930d89c0f0f774b50032c4f9ae30e4 (diff) | |
download | curl-f535f4f5fc6cbdce1aec5a3481cec37369dca468.tar.gz |
buffer_size: make sure it always has the correct size
Removes the need for CURL_BUFSIZE
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 bbdbb86ad..57d908c9c 100644 --- a/lib/telnet.c +++ b/lib/telnet.c @@ -1416,7 +1416,7 @@ static CURLcode telnet_do(struct connectdata *conn, bool *done) /* Keep on listening and act on events */ while(keepon) { - const DWORD buf_size = (DWORD)CURL_BUFSIZE(data->set.buffer_size); + const DWORD buf_size = (DWORD)data->set.buffer_size; waitret = WaitForMultipleObjects(obj_count, objs, FALSE, wait_timeout); switch(waitret) { case WAIT_TIMEOUT: |