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

Fix -tran shutdown which I broke when introduced new shutdown modes

This commit is contained in:
skidder 2004-05-31 22:57:12 +00:00
parent 2ed962caac
commit c2abc04785

View File

@ -227,7 +227,7 @@ bool SHUT_database(Database* dbb, SSHORT flag, SSHORT delay)
if (flag & isc_dpb_shut_transaction) {
exclusive = false;
flag = isc_dpb_shut_force;
flag = isc_dpb_shut_force | (flag & isc_dpb_shut_mode_mask);
}
dbb->dbb_ast_flags |= DBB_shutdown;