X-Git-Url: http://git.maemo.org/git/?p=browser-switch;a=blobdiff_plain;f=configfile.c;h=5ed02d6eb22c37863968fc9ca7da89878e363384;hp=7f3b905f399d660fdb99c7bbef6f46f1e45b8f3b;hb=ebfd6218aa25d59ce3fcc2330ca62a77c6c754f8;hpb=07c9702e8c2b041069e438d9547c85429cd32d76 diff --git a/configfile.c b/configfile.c index 7f3b905..5ed02d6 100644 --- a/configfile.c +++ b/configfile.c @@ -111,6 +111,7 @@ void parse_config_file_end(void) { regfree(&re_ignore); regfree(&re_config1); regfree(&re_config2); + re_init = 0; } /* Read the next line from a config file and store it into a swb_config_line, @@ -143,7 +144,6 @@ int parse_config_file_line(FILE *fp, struct swb_config_line *line) { else return -1; } - printf("%s", line->key); /* no need to parse blank lines and comments */ if (!regexec(&re_ignore, line->key, 0, NULL, 0)) @@ -177,7 +177,6 @@ int parse_config_file_line(FILE *fp, struct swb_config_line *line) { /* done parsing the line */ line->parsed = 1; - printf("%s: '%s'\n", line->key, line->value); finish: if (!line->parsed) {