Skip to content

Commit 367ca9c

Browse files
committed
HttpsRequest: Remove trailing slash from ca cert path
1 parent e4e06e4 commit 367ca9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/SocketWrapper/src/utility/https_request.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class HttpsRequest : public HttpRequestBase {
6464
if (ssl_ca_pem)
6565
((TLSSocket*)_socket)->set_root_ca_cert(ssl_ca_pem);
6666
else
67-
((TLSSocket*)_socket)->set_root_ca_cert_path("/wlan/");
67+
((TLSSocket*)_socket)->set_root_ca_cert_path("/wlan");
6868
_we_created_socket = true;
6969
}
7070

0 commit comments

Comments
 (0)