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:
parent
744db52acb
commit
7ea43aff2c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user