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

This should fix #7096

This commit is contained in:
Paul Reeves 2022-01-20 17:29:57 +01:00
parent 2acdb13ad7
commit e17e25b519

View File

@ -920,9 +920,6 @@ end;
function ConfigureFirebird: boolean;
begin
if IsNotServerInstall then
Result := False
else
Result := (InstallAndConfigure AND Configure) = Configure;
end;
@ -1213,10 +1210,13 @@ end;
function ConfigureAuthentication: boolean;
begin
if FileExists(WizardDirValue + '\security4.fdb') then
if IsNotServerInstall then
Result := false
else
Result := true;
if FileExists(WizardDirValue + '\security4.fdb') then
Result := false
else
Result := true;
end;