Reverted an addition to be able to use ';' as a comment

starting character elsewhere than in the beginning of a line,
because it affected some innodb options that had ';'
in them.
parent b68a83a0
......@@ -462,7 +462,7 @@ static char *remove_end_comment(char *ptr)
quote= 0;
}
/* We are not inside a comment */
if (!quote && (*ptr == '#' || *ptr == ';'))
if (!quote && *ptr == '#')
{
*ptr= 0;
return ptr;
......
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