From 888e4b682193157960d2d33e578fc074d83c9985 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 11 Feb 2016 10:20:48 +0100 Subject: [PATCH] simplessl.c: fix my breakage --- docs/examples/simplessl.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/examples/simplessl.c b/docs/examples/simplessl.c index c543d2fe1..8af3aa13f 100644 --- a/docs/examples/simplessl.c +++ b/docs/examples/simplessl.c @@ -47,7 +47,6 @@ int main(void) { - int i; CURL *curl; CURLcode res; FILE *headerfile; @@ -55,7 +54,7 @@ int main(void) static const char *pCertFile = "testcert.pem"; static const char *pCACertFile="cacert.pem"; - static const char *pHeaderFile = "dumpit" + static const char *pHeaderFile = "dumpit"; const char *pKeyName; const char *pKeyType; @@ -131,10 +130,10 @@ int main(void) curl_easy_strerror(res)); /* we are done... */ - } + } while (0); /* always cleanup */ curl_easy_cleanup(curl); - } while(0); + } curl_global_cleanup();