mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 00:55:04 -05:00
examples/curlx: Fix code style
- Add braces around multi-line if statement. Closes https://github.com/curl/curl/pull/2096
This commit is contained in:
parent
715f1f53e0
commit
297516e12c
@ -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 ***/
|
||||
|
Loading…
Reference in New Issue
Block a user