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:
parent
2acdb13ad7
commit
e17e25b519
@ -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;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user