summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormronstrom@mysql.com <>2004-06-11 13:56:00 +0200
committermronstrom@mysql.com <>2004-06-11 13:56:00 +0200
commitbf633ab9ebd59c91f9d8b1395a5f545eb21112ae (patch)
tree492591a54ec2aca96fe6c71a96ae6a649ca4575f
parent80bb13716e3788530778a337c27afddf1cfb6db8 (diff)
downloadmariadb-git-bf633ab9ebd59c91f9d8b1395a5f545eb21112ae.tar.gz
Forgot to change 31 into mask_value
-rw-r--r--ndb/src/kernel/blocks/dbtc/DbtcMain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp b/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
index 9caf0d9ed59..1c03d70adb8 100644
--- a/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
+++ b/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
@@ -5991,7 +5991,7 @@ void Dbtc::timeOutLoopStartLab(Signal* signal, Uint32 api_con_ptr)
Uint32 api_timer= getApiConTimer(api_con_ptr);
jam();
if (api_timer != 0) {
- time_out_value= time_out_param + (api_con_ptr & 31);
+ time_out_value= time_out_param + (api_con_ptr & mask_value);
time_passed= tc_timer - api_timer;
if (time_passed > time_out_value) {
jam();