1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

code cleanup after some reasoning

sql/mysqld.cc:
  code cleanup
This commit is contained in:
unknown
2003-12-09 20:49:48 +01:00
parent e425b98a01
commit 7cfbf9e8f6
6 changed files with 16 additions and 10 deletions

View File

@ -941,7 +941,8 @@ static void mysql_read_default_options(struct st_mysql_options *options,
options->rpl_parse= 1;
break;
case 27:
options->max_allowed_packet= atoi(opt_arg);
if (opt_arg)
options->max_allowed_packet= atoi(opt_arg);
break;
default:
DBUG_PRINT("warning",("unknown option: %s",option[0]));