diff options
author | mronstrom@mysql.com <> | 2004-06-11 13:56:00 +0200 |
---|---|---|
committer | mronstrom@mysql.com <> | 2004-06-11 13:56:00 +0200 |
commit | bf633ab9ebd59c91f9d8b1395a5f545eb21112ae (patch) | |
tree | 492591a54ec2aca96fe6c71a96ae6a649ca4575f | |
parent | 80bb13716e3788530778a337c27afddf1cfb6db8 (diff) | |
download | mariadb-git-bf633ab9ebd59c91f9d8b1395a5f545eb21112ae.tar.gz |
Forgot to change 31 into mask_value
-rw-r--r-- | ndb/src/kernel/blocks/dbtc/DbtcMain.cpp | 2 |
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(); |