Commit f97fefa8 authored by unknown's avatar unknown

Merge mysql.com:/Users/emurphy/src/bk-clean/mysql-5.0

into  mysql.com:/Users/emurphy/src/work/mysql-5.0-bug11567

parents ded99464 cf8f1dac
...@@ -242,7 +242,7 @@ static void print_set_option(FILE* file, uint32 bits_changed, uint32 option, ...@@ -242,7 +242,7 @@ static void print_set_option(FILE* file, uint32 bits_changed, uint32 option,
{ {
if (*need_comma) if (*need_comma)
fprintf(file,", "); fprintf(file,", ");
fprintf(file,"%s=%d", name, (bool)(flags & option)); fprintf(file,"%s=%d", name, test(flags & option));
*need_comma= 1; *need_comma= 1;
} }
} }
......
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