msgfile: Allow to have comments in the simple CSV file

This commit is contained in:
Holger Hans Peter Freyther 2010-10-26 09:31:16 +02:00
parent a1094c801f
commit 131bc80b96
2 changed files with 5 additions and 0 deletions

View File

@ -70,6 +70,10 @@ static void handle_line(struct msg_entries *entries, char *line)
char *items[3];
int last_item = 0;
/* Skip comments from the file */
if (line[0] == '#')
return;
for (i = 0; i < len; ++i) {
if (line[i] == '\n' || line[i] == '\r')
line[i] = '\0';

View File

@ -1 +1,2 @@
# This is a comment
*:*::Hello Welt