aboutsummaryrefslogtreecommitdiff
path: root/lib/imap.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/imap.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/imap.c')
-rw-r--r--lib/imap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/imap.c b/lib/imap.c
index 986b79a56..ab53c9d74 100644
--- a/lib/imap.c
+++ b/lib/imap.c
@@ -580,7 +580,7 @@ static CURLcode imap_statemach_act(struct connectdata *conn)
return CURLE_FTP_WEIRD_SERVER_REPLY;
}
- if(data->set.ftp_ssl && !conn->ssl[FIRSTSOCKET].use) {
+ if(data->set.use_ssl && !conn->ssl[FIRSTSOCKET].use) {
/* We don't have a SSL/TLS connection yet, but SSL is requested. Switch
to TLS connection now */
const char *str;