mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't make error on ^<spaces>\n
Obtained from: NetBSD
This commit is contained in:
parent
29eaad36e5
commit
33e5f8f7b0
1 changed files with 1 additions and 1 deletions
|
|
@ -2405,7 +2405,7 @@ Parse_File(name, stream)
|
|||
goto nextLine;
|
||||
}
|
||||
}
|
||||
if (*line == '#') {
|
||||
if (*line == '#' || *line == '\0') {
|
||||
/* If we're this far, the line must be a comment. */
|
||||
goto nextLine;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue