Commit eab37e1d authored by lenz@mysql.com's avatar lenz@mysql.com

Merge mysql.com:/data0/mysqldev/lenz/mysql-4.1

into mysql.com:/data0/mysqldev/lenz/mysql-5.0
parents 05d4c0c7 6893e596
......@@ -359,7 +359,7 @@ Match::eval(NdbMgmHandle h, const Iter& iter)
}
else if(iter.get(m_key, &val64) == 0)
{
if(atoll(m_value.c_str()) != val64)
if(strtoll(m_value.c_str(), (char **)NULL, 10) != val64)
return 0;
}
else if(iter.get(m_key, &valc) == 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment