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

Totally misc.

This commit is contained in:
robocop 2005-11-11 05:42:42 +00:00
parent 53b96b5556
commit 1e562ddc16

View File

@ -2979,9 +2979,9 @@ static void transaction_options(
case isc_tpb_verb_time:
case isc_tpb_commit_time:
{
const USHORT l = *tpb++;
tpb += l;
break;
const USHORT l = *tpb++;
tpb += l;
break;
}
case isc_tpb_autocommit:
@ -2994,15 +2994,15 @@ static void transaction_options(
case isc_tpb_lock_timeout:
{
if (!wait)
{
ERR_post(isc_bad_tpb_content, 0);
}
const USHORT l = *tpb++;
transaction->tra_lock_timeout = gds__vax_integer(tpb, l);
tpb += l;
lock_timeout = true;
break;
if (!wait)
{
ERR_post(isc_bad_tpb_content, 0);
}
const USHORT l = *tpb++;
transaction->tra_lock_timeout = gds__vax_integer(tpb, l);
tpb += l;
lock_timeout = true;
break;
}
default: