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; function ConfigureFirebird: boolean;
begin begin
if IsNotServerInstall then
Result := False
else
Result := (InstallAndConfigure AND Configure) = Configure; Result := (InstallAndConfigure AND Configure) = Configure;
end; end;
@ -1210,12 +1207,16 @@ begin
end; end;
} }
function ConfigureAuthentication: boolean; function ConfigureAuthentication: boolean;
begin begin
if FileExists(WizardDirValue + '\security5.fdb') then if IsNotServerInstall then
Result := false Result := false
else else
Result := true; if FileExists(WizardDirValue + '\security5.fdb') then
Result := false
else
Result := true;
end; end;