diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-08-27 14:50:53 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-08-27 14:50:53 +0200 |
commit | 54faab69cbdabe51bab1bdee0a9c69e423178084 (patch) | |
tree | 3d47c6aa0df7172257788d152f233f3b57856881 /include | |
parent | 8136649e9d704ed97ab419f1a2e005d586591853 (diff) | |
download | curl-54faab69cbdabe51bab1bdee0a9c69e423178084.tar.gz |
curl.h: fix comment to refer to current names
CURLOPT_USE_SSL should be set to CURLUSESSL_* and nothing else in modern
libcurl versions.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 200188d91..49b2084c1 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1223,9 +1223,9 @@ typedef enum { CINIT(NETRC_FILE, OBJECTPOINT, 118), /* Enable SSL/TLS for FTP, pick one of: - CURLFTPSSL_TRY - try using SSL, proceed anyway otherwise - CURLFTPSSL_CONTROL - SSL for the control connection or fail - CURLFTPSSL_ALL - SSL for all communication or fail + CURLUSESSL_TRY - try using SSL, proceed anyway otherwise + CURLUSESSL_CONTROL - SSL for the control connection or fail + CURLUSESSL_ALL - SSL for all communication or fail */ CINIT(USE_SSL, LONG, 119), |