1
0
mirror of https://github.com/MariaDB/server.git synced 2025-06-12 01:53:02 +03:00

code cleanup after some reasoning

This commit is contained in:
serg@serg.mylan
2003-12-09 20:49:48 +01:00
parent 3248878cf1
commit eaa0c4494f
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]));