1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fixed minor compiler errors encountered during pre-final builds.

sql/item_func.cc:
  Goto statement potentially skips declaration of 'i'-- VC++ compiler
  generates an error.
sql/mysql_priv.h:
  Some platforms will not find sql_bitmap.h when angle brackets are used.
sql/mysqld.cc:
  my_strcasecmp now needs a charset info parameter.
strings/my_strtoll10.c:
  Changed constant macro to use LL()-- fixes compiler error under Windows.
This commit is contained in:
unknown
2003-11-12 03:38:46 -05:00
parent f5ea1f4f2f
commit d35292fdf1
4 changed files with 6 additions and 6 deletions

View File

@ -2796,7 +2796,7 @@ int main(int argc, char **argv)
but we started a bad tradition by calling it MySQL from the start
and we are now stuck with it.
*/
if (my_strcasecmp(argv[1],"mysql"))
if (my_strcasecmp(system_charset_info, argv[1],"mysql"))
load_default_groups[3]= argv[1];
start_mode= 1;
Service.Init(argv[1], mysql_service);
@ -2817,7 +2817,7 @@ int main(int argc, char **argv)
opt_argc= 2; // Skip service-name
opt_argv=argv;
start_mode= 1;
if (my_strcasecmp(argv[2],"mysql"))
if (my_strcasecmp(system_charset_info, argv[2],"mysql"))
load_default_groups[3]= argv[2];
Service.Init(argv[2], mysql_service);
return 0;