1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix for spelling miss and eol junk

This commit is contained in:
msvensson@neptunus.(none)
2005-09-01 20:02:08 +02:00
parent 544273f9e8
commit 1026fa2fe3
5 changed files with 8 additions and 8 deletions

View File

@ -2431,7 +2431,7 @@ int read_line(char *buf, int size)
break;
case R_LINE_START:
/* Only accept start of comment if this is the first line in query */
if ((*lineno == start_lineno) && (c == '#' || c == '-' || parsing_diabled))
if ((*lineno == start_lineno) && (c == '#' || c == '-' || parsing_disabled))
{
state = R_COMMENT;
}