gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 86/116: examples/curlx: Fix code style


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 86/116: examples/curlx: Fix code style
Date: Tue, 05 Dec 2017 14:51:56 +0100

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 297516e12cd0c59d33bea25420927aa314336d60
Author: fmmedeiros <address@hidden>
AuthorDate: Sat Nov 18 15:06:35 2017 -0300

    examples/curlx: Fix code style
    
    - Add braces around multi-line if statement.
    
    Closes https://github.com/curl/curl/pull/2096
---
 docs/examples/curlx.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/docs/examples/curlx.c b/docs/examples/curlx.c
index c36beedfa..2aa10aa75 100644
--- a/docs/examples/curlx.c
+++ b/docs/examples/curlx.c
@@ -537,7 +537,7 @@ int main(int argc, char **argv)
              res = curl_easy_perform(p.curl));
   {
     int result = curl_easy_getinfo(p.curl, CURLINFO_CONTENT_TYPE, &response);
-    if(mimetypeaccept && p.verbose)
+    if(mimetypeaccept && p.verbose) {
       if(!strcmp(mimetypeaccept, response))
         BIO_printf(p.errorbio, "the response has a correct mimetype : %s\n",
                    response);
@@ -545,6 +545,7 @@ int main(int argc, char **argv)
         BIO_printf(p.errorbio, "the response doesn\'t have an acceptable "
                    "mime type, it is %s instead of %s\n",
                    response, mimetypeaccept);
+    }
   }
 
   /*** code d'erreur si accept mime ***, egalement code return HTTP != 200 ***/

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]