mirror of
https://github.com/curl/curl.git
synced 2026-07-22 19:47:16 +03:00
connection re-using didn't work on non-default ports when not using proxy
until now
This commit is contained in:
parent
90cce2ae3a
commit
583c2e2f09
1 changed files with 1 additions and 1 deletions
|
|
@ -930,7 +930,7 @@ ConnectionExists(struct UrlData *data,
|
|||
|
||||
if(strequal(needle->protostr, check->protostr) &&
|
||||
strequal(needle->name, check->name) &&
|
||||
(needle->port == check->port) ) {
|
||||
(needle->remote_port == check->remote_port) ) {
|
||||
bool dead;
|
||||
if(strequal(needle->protostr, "FTP")) {
|
||||
/* This is FTP, verify that we're using the same name and
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue