previous proto struct was kept.
Changelog
+Daniel S (29 September 2007)
+- Immanuel Gregoire fixed a problem with persistent transfers over SFTP.
+
Daniel S (28 September 2007)
- Adapted the c-ares code to the API change c-ares 1.5.0 brings in the
notifier callback(s).
o --ftp-method nocwd on directory listings
o FTP, CURLOPT_NOBODY enabled and CURLOPT_HEADER disabled now does TYPE
before SIZE
+ o persistent transfers over SFTP
This release includes the following known bugs:
CURLcode result;
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);
if (result)
return result;