mirror of
https://github.com/curl/curl.git
synced 2026-04-15 00:41:41 +03:00
ftp: use 'conn' instead of 'data->conn'
In the ftp_state_use_port function, as we already use that local variable for all other conn accesses. Closes #18304
This commit is contained in:
parent
435069fcd9
commit
e440686034
1 changed files with 1 additions and 1 deletions
|
|
@ -1256,7 +1256,7 @@ out:
|
|||
!Curl_conn_is_ssl(conn, SECONDARYSOCKET)) {
|
||||
result = Curl_ssl_cfilter_add(data, conn, SECONDARYSOCKET);
|
||||
}
|
||||
data->conn->bits.do_more = FALSE;
|
||||
conn->bits.do_more = FALSE;
|
||||
Curl_pgrsTime(data, TIMER_STARTACCEPT);
|
||||
Curl_expire(data, (data->set.accepttimeout > 0) ?
|
||||
data->set.accepttimeout: DEFAULT_ACCEPT_TIMEOUT,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue