Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
Fix missing semicolon;
Browse files Browse the repository at this point in the history
  • Loading branch information
hollinger committed Nov 17, 2014
1 parent 36780a8 commit 417a156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/default/http_request_baton_curl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ void start_request(void *const ptr) {
// Carry on the shared pointer in the private information of the CURL handle.
curl_easy_setopt(context->handle, CURLOPT_PRIVATE, context);
#ifndef __ANDROID__
curl_easy_setopt(context->handle, CURLOPT_CAINFO, "ca-bundle.crt")
curl_easy_setopt(context->handle, CURLOPT_CAINFO, "ca-bundle.crt");
#else
curl_easy_setopt(context->handle, CURLOPT_SSLCERTTYPE, "PEM");
curl_easy_setopt(context->handle, CURLOPT_SSL_CTX_FUNCTION, sslctx_function);
Expand Down

1 comment on commit 417a156

@ljbade
Copy link
Contributor

@ljbade ljbade commented on 417a156 Nov 18, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for spotting that, didn't have time to check Travis build before I went to sleep.

Please sign in to comment.