Commit 54a112fe authored by unknown's avatar unknown

BUG#6554 Problem Building MySql on Fedora Core 3

 - Remove the local static var


sql/ha_berkeley.cc:
  Remove local static var, make it local in file instead.
BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
parent d5d9e4c7
......@@ -102,6 +102,7 @@ monty@tik.
monty@tik.mysql.fi
monty@tramp.mysql.fi
monty@work.mysql.com
msvensson@neptunus.(none)
mwagner@cash.mwagner.org
mwagner@evoq.mwagner.org
mwagner@here.mwagner.org
......
......@@ -336,8 +336,10 @@ void berkeley_cleanup_log_files(void)
** Berkeley DB tables
*****************************************************************************/
static const char *bdb_bas_exts[]= { ha_berkeley_ext, NullS };
const char **ha_berkeley::bas_ext() const
{ static const char *ext[]= { ha_berkeley_ext, NullS }; return ext; }
{ return bdb_bas_exts; }
static int
......
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