src/types_list.c: Strip newlines from the end of the line.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Tue, 8 May 2007 20:44:51 +0000 (22:44 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Tue, 8 May 2007 20:44:51 +0000 (22:44 +0200)
src/types_list.c

index 3963897..002761c 100644 (file)
@@ -158,6 +158,13 @@ static void parse_file (FILE *fh)
     if ((buf_len == 0) || (buf[0] == '#'))
       continue;
 
+    while ((buf_len > 0) && ((buf[buf_len - 1] == '\n')
+         || (buf[buf_len - 1] == '\n')))
+      buf[--buf_len] = '\0';
+
+    if (buf_len == 0)
+      continue;
+
     parse_line (buf, buf_len);
   } /* while (fgets) */
 } /* void parse_file */