summaryrefslogtreecommitdiff
path: root/docs/examples/sslbackend.c
Commit message (Collapse)AuthorAgeFilesLines
* curl-compilers: enable -Wbad-function-cast on GCCMarcel Raad2018-08-211-2/+2
| | | | | | | This warning used to be enabled only for clang as it's a bit stricter on GCC. Silence the remaining occurrences and enable it on GCC too. Closes https://github.com/curl/curl/pull/2747
* examples/sslbackend.c: fix failure of 'make checksrc'Kamil Dudka2017-08-301-2/+4
| | | | | | | | | ./sslbackend.c:58:3: warning: else after closing brace on same line (BRACEELSE) } else if(isdigit(*name)) { ^ ./sslbackend.c:62:3: warning: else after closing brace on same line (BRACEELSE) } else ^
* docs/examples: demonstrate how to select SSL backendsJohannes Schindelin2017-08-281-0/+75
The newly-introduced curl_global_sslset() function deserves to be show-cased. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>