From d8cf039d98ce12df2baefd9da5731952ab6af6ca Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Tue, 27 Oct 2020 08:39:04 +0100 Subject: [PATCH] Emergency fix: Turn asLibrary again into a session based setting. Broken in commit b22c3fd81549edba525e526cb6429aad2fa1faf3. Closes #1199 --- source/apphelpers.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/apphelpers.pas b/source/apphelpers.pas index 49147857..8b83fea2 100644 --- a/source/apphelpers.pas +++ b/source/apphelpers.pas @@ -3518,7 +3518,7 @@ begin InitSetting(asWindowsAuth, 'WindowsAuth', 0, False, '', True); InitSetting(asLoginPrompt, 'LoginPrompt', 0, False, '', True); InitSetting(asPort, 'Port', 0, False, '', True); - InitSetting(asLibrary, 'Library', 0, False, ''); // Gets its default in TConnectionParameters.Create + InitSetting(asLibrary, 'Library', 0, False, '', True); // Gets its default in TConnectionParameters.Create InitSetting(asAllProviders, 'AllProviders', 0, False); InitSetting(asPlinkExecutable, 'PlinkExecutable', 0, False, 'plink.exe'); InitSetting(asSSHtunnelHost, 'SSHtunnelHost', 0, False, '', True);