diff options
author | unknown <jonas@perch.ndb.mysql.com> | 2007-04-02 08:36:00 +0200 |
---|---|---|
committer | unknown <jonas@perch.ndb.mysql.com> | 2007-04-02 08:36:00 +0200 |
commit | b84e64f7dfc6dc883c8dc4afc20f2fca046e0e7d (patch) | |
tree | 8444107a92ec835663874425b0b66f3aaaba0e70 /ndb | |
parent | 4dee1e6a975b3befe070f2631984b6ac813fea00 (diff) | |
download | mariadb-git-b84e64f7dfc6dc883c8dc4afc20f2fca046e0e7d.tar.gz |
ndb - fix bug in my.cnf config handling
put64 for 64-bit variables
ndb/src/mgmsrv/InitConfigFileParser.cpp:
put64
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/src/mgmsrv/InitConfigFileParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/mgmsrv/InitConfigFileParser.cpp b/ndb/src/mgmsrv/InitConfigFileParser.cpp index 264a998a67b..e03c5408837 100644 --- a/ndb/src/mgmsrv/InitConfigFileParser.cpp +++ b/ndb/src/mgmsrv/InitConfigFileParser.cpp @@ -658,7 +658,7 @@ InitConfigFileParser::store_in_properties(Vector<struct my_option>& options, if (options[i].var_type == GET_INT) ctx.m_currentSection->put(options[i].name, (Uint32)value_int); else - ctx.m_currentSection->put(options[i].name, value_int); + ctx.m_currentSection->put64(options[i].name, value_int); } } return true; |