diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-01-05 22:34:37 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-01-05 22:34:37 +0000 |
commit | 979a1e62370d0703600c6b77e13e5a7302a1d121 (patch) | |
tree | 23be46fb41e9d852b040ef7415ce70de3d28df43 | |
parent | b60e0fa97ed7ddc66d0ad6d00dfd78319bb6ad36 (diff) |
fix duplicates
-rw-r--r-- | include/curl/curl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index d0a03e170..fa393715d 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -736,14 +736,14 @@ typedef enum { to parse (using the CURLOPT_NETRC option). If not set, libcurl will do a poor attempt to find the user's home directory and check for a .netrc file in there. */ - CINIT(NETRC_FILE, OBJECTPOINT, 115), + 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 */ - CINIT(FTP_SSL, LONG, 116), + CINIT(FTP_SSL, LONG, 119), CURLOPT_LASTENTRY /* the last unused */ } CURLoption; |