summaryrefslogtreecommitdiff
path: root/src/util/ParseFile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/ParseFile.c')
-rw-r--r--src/util/ParseFile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/ParseFile.c b/src/util/ParseFile.c
index 2e395580..604f6380 100644
--- a/src/util/ParseFile.c
+++ b/src/util/ParseFile.c
@@ -81,7 +81,7 @@ int ParseFile(FILE *ifp,
while ((c=fgetc(ifp)) != EOF)
{
/* Main Loop */
- while (c == '#')
+ while (c == '#' || c == '!' )
{
/* Comment line. So forget rest of line */
while ((c=fgetc(ifp)) != '\n' && c != EOF);