Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

installer: really default to Secure Channel #586

Merged
Merged
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
2 changes: 1 addition & 1 deletion installer/install.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2324,7 +2324,7 @@ begin
RdbCurlVariant[GC_WinSSL]:=CreateRadioButton(CurlVariantPage,'Use the native Windows Secure Channel library','Server certificates will be validated using Windows Certificate Stores.'+#13+'This option also allows you to use your company''s internal Root CA certificates'+#13+'distributed e.g. via Active Directory Domain Services.',TabOrder,Top,Left);

// Restore the setting chosen during a previous install.
case ReplayChoice('CURL Option','OpenSSL') of
case ReplayChoice('CURL Option','WinSSL') of
'OpenSSL': RdbCurlVariant[GC_OpenSSL].Checked:=True;
'WinSSL': RdbCurlVariant[GC_WinSSL].Checked:=True;
else
Expand Down
Loading