8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 22:43:03 +01:00

Forward port the fix for #7096

This commit is contained in:
Paul Reeves 2023-01-18 12:33:44 +01:00
parent 744db52acb
commit 7ea43aff2c

View File

@ -920,9 +920,6 @@ end;
function ConfigureFirebird: boolean;
begin
if IsNotServerInstall then
Result := False
else
Result := (InstallAndConfigure AND Configure) = Configure;
end;
@ -1210,8 +1207,12 @@ begin
end;
}
function ConfigureAuthentication: boolean;
begin
if IsNotServerInstall then
Result := false
else
if FileExists(WizardDirValue + '\security5.fdb') then
Result := false
else