Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/fbchkdoc/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,12 @@ the '-ini FILE' command line option to any of the tools.
are given. Set or override this url with the '-url URL' command
line option

web_cert_file
web_certificate
path and file name to the certificate for web url. Selected when the
'-web' or '-web+' command line option given. Set or override this
option with the '-certificate FILE' command line option.

dev_cert_file
dev_certificate
path and file name to the certificate for dev url. Selected when the
'-dev' or '-dev+' command line option given. Set or override this
option with the '-certificate FILE' command line option.
Expand Down
4 changes: 4 additions & 0 deletions doc/libfbdoc/CHttpStream.bas
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,8 @@ namespace fb

if( ca_file ) then
ret = curl_easy_setopt( curl, CURLOPT_CAINFO, ca_file )
else
curl_easy_setopt( curl, CURLOPT_SSL_OPTIONS, CURLSSLOPT_NATIVE_CA )
end if

'' This option should not be needed. It wasn't in earlier version
Expand Down Expand Up @@ -302,6 +304,8 @@ namespace fb

if( ca_file ) then
curl_easy_setopt( curl, CURLOPT_CAINFO, ca_file )
else
curl_easy_setopt( curl, CURLOPT_SSL_OPTIONS, CURLSSLOPT_NATIVE_CA )
end if

ret = curl_easy_perform( curl )
Expand Down