Commit 549d8c3d authored by unknown's avatar unknown
Browse files

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.
parent e97a4a4a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -336,8 +336,9 @@ 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