diff options
author | Yang Tse <yangsita@gmail.com> | 2013-07-22 19:43:08 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2013-07-22 21:40:43 +0200 |
commit | 82232bbbaf06b4ea0b86344ccf3ee0b3f7b0c92c (patch) | |
tree | 80de39c988e0e1ff0cc022b679ef0355e2ffe40d /src/tool_setopt.c | |
parent | bb2e0686abb01a04e3edc443ba72d18b744c3068 (diff) | |
download | curl-82232bbbaf06b4ea0b86344ccf3ee0b3f7b0c92c.tar.gz |
curl: fix symbolic names for CURLUSESSL_* enum in --libcurl output
Diffstat (limited to 'src/tool_setopt.c')
-rw-r--r-- | src/tool_setopt.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tool_setopt.c b/src/tool_setopt.c index 4493e5f8d..19439923a 100644 --- a/src/tool_setopt.c +++ b/src/tool_setopt.c @@ -96,6 +96,14 @@ const NameValue setopt_nv_CURLFTPSSL_CCC[] = { NVEND, }; +const NameValue setopt_nv_CURLUSESSL[] = { + NV(CURLUSESSL_NONE), + NV(CURLUSESSL_TRY), + NV(CURLUSESSL_CONTROL), + NV(CURLUSESSL_ALL), + NVEND, +}; + /* These mappings essentially triplicated - see * tool_libinfo.c and tool_paramhlp.c */ const NameValue setopt_nv_CURLPROTO[] = { |