aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2011-11-03 09:54:12 +0100
committerDaniel Stenberg <daniel@haxx.se>2011-11-03 09:54:12 +0100
commit93e57d0628aad62330dc62ff809752a0478824c4 (patch)
treea88c9f4bbedff4c059c6eb837f7abb8582428fbf /lib/url.c
parenta873b95c21700e8e75db7e62b5ac5ef8fc8c9b03 (diff)
rename ftp_ssl: the struct field is used for many protocols
Now called 'use_ssl' instead, which better matches the current CURLOPT name and since the option is used for all pingpong protocols (at least) it makes sense to not use 'ftp' in the name.
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 8118fe5c5..9c7966fc0 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -2169,7 +2169,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
/*
* Make transfers attempt to use SSL/TLS.
*/
- data->set.ftp_ssl = (curl_usessl)va_arg(param, long);
+ data->set.use_ssl = (curl_usessl)va_arg(param, long);
break;
#endif
case CURLOPT_FTPSSLAUTH: