mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 16:18:48 -05:00
Curl_write() now takes a different 5th argument
This commit is contained in:
parent
cba9838e8f
commit
f2bda5fd5b
@ -1090,7 +1090,7 @@ CURLcode Curl_telnet(struct connectdata *conn)
|
|||||||
{
|
{
|
||||||
unsigned char outbuf[2];
|
unsigned char outbuf[2];
|
||||||
int out_count = 0;
|
int out_count = 0;
|
||||||
size_t bytes_written;
|
ssize_t bytes_written;
|
||||||
char *buffer = buf;
|
char *buffer = buf;
|
||||||
|
|
||||||
if(!ReadFile(stdin_handle, buf, 255, &nread, NULL)) {
|
if(!ReadFile(stdin_handle, buf, 255, &nread, NULL)) {
|
||||||
@ -1160,7 +1160,7 @@ CURLcode Curl_telnet(struct connectdata *conn)
|
|||||||
if(FD_ISSET(0, &readfd)) { /* read from stdin */
|
if(FD_ISSET(0, &readfd)) { /* read from stdin */
|
||||||
unsigned char outbuf[2];
|
unsigned char outbuf[2];
|
||||||
int out_count = 0;
|
int out_count = 0;
|
||||||
size_t bytes_written;
|
ssize_t bytes_written;
|
||||||
char *buffer = buf;
|
char *buffer = buf;
|
||||||
|
|
||||||
nread = read(0, buf, 255);
|
nread = read(0, buf, 255);
|
||||||
|
Loading…
Reference in New Issue
Block a user