From 93e57d0628aad62330dc62ff809752a0478824c4 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 3 Nov 2011 09:54:12 +0100 Subject: 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. --- lib/pop3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/pop3.c') diff --git a/lib/pop3.c b/lib/pop3.c index cb70679c5..6cda3bc5a 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -521,7 +521,7 @@ static CURLcode pop3_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 */ result = Curl_pp_sendf(&pop3c->pp, "STLS"); -- cgit v1.2.3