diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-01-18 11:56:50 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-01-19 09:14:51 +0100 |
commit | a304051620b92e12b6b1b4e19edc57b34ea332b6 (patch) | |
tree | 6611cb1f943e6eecebedd4fa19ec5d1716a38ccc /lib/imap.c | |
parent | bbe3aa9f881fa27fe828e3c9a36d6831f254a3ee (diff) | |
download | curl-a304051620b92e12b6b1b4e19edc57b34ea332b6.tar.gz |
lib: more conn->data cleanups
Closes #6479
Diffstat (limited to 'lib/imap.c')
-rw-r--r-- | lib/imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/imap.c b/lib/imap.c index bab531239..754b4d31e 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -1284,7 +1284,7 @@ static CURLcode imap_statemachine(struct Curl_easy *data, /* Flush any data that needs to be sent */ if(pp->sendleft) - return Curl_pp_flushsend(pp); + return Curl_pp_flushsend(data, pp); do { /* Read the response from the server */ |