cf-socket: fix FTP accept connect

When cf_tcp_accept_connect() is called and it sets up a connection it
never indicates to the caller that the it's done.

Closes #17186
This commit is contained in:
Andreas Westin 2025-04-17 10:46:35 +02:00 committed by Daniel Stenberg
parent c3aa22272d
commit cc884c08a8
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -2182,6 +2182,7 @@ static CURLcode cf_tcp_accept_connect(struct Curl_cfilter *cf,
if(error)
return CURLE_ABORTED_BY_CALLBACK;
}
*done = TRUE;
return CURLE_OK;
}