Immanuel Gregoire fixed a problem with persistent transfers over SFTP - the
previous proto struct was kept.
This commit is contained in:
parent
2694b970e8
commit
f58ba5ab1c
3
CHANGES
3
CHANGES
@ -6,6 +6,9 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Daniel S (29 September 2007)
|
||||||
|
- Immanuel Gregoire fixed a problem with persistent transfers over SFTP.
|
||||||
|
|
||||||
Daniel S (28 September 2007)
|
Daniel S (28 September 2007)
|
||||||
- Adapted the c-ares code to the API change c-ares 1.5.0 brings in the
|
- Adapted the c-ares code to the API change c-ares 1.5.0 brings in the
|
||||||
notifier callback(s).
|
notifier callback(s).
|
||||||
|
@ -27,6 +27,7 @@ This release includes the following bugfixes:
|
|||||||
o --ftp-method nocwd on directory listings
|
o --ftp-method nocwd on directory listings
|
||||||
o FTP, CURLOPT_NOBODY enabled and CURLOPT_HEADER disabled now does TYPE
|
o FTP, CURLOPT_NOBODY enabled and CURLOPT_HEADER disabled now does TYPE
|
||||||
before SIZE
|
before SIZE
|
||||||
|
o persistent transfers over SFTP
|
||||||
|
|
||||||
This release includes the following known bugs:
|
This release includes the following known bugs:
|
||||||
|
|
||||||
|
@ -1765,6 +1765,11 @@ CURLcode Curl_ssh_connect(struct connectdata *conn, bool *done)
|
|||||||
CURLcode result;
|
CURLcode result;
|
||||||
struct SessionHandle *data = conn->data;
|
struct SessionHandle *data = conn->data;
|
||||||
|
|
||||||
|
if (data->reqdata.proto.ssh) {
|
||||||
|
Curl_safefree(data->reqdata.proto.ssh);
|
||||||
|
data->reqdata.proto.ssh = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
result = ssh_init(conn);
|
result = ssh_init(conn);
|
||||||
if (result)
|
if (result)
|
||||||
return result;
|
return result;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user