X-Git-Url: https://git.jankratochvil.net/?p=gnokii.git;a=blobdiff_plain;f=common%2Ffiles%2Fcfgreader.c;fp=common%2Ffiles%2Fcfgreader.c;h=dd0e575e5c0ff11e05aa3ed7ecd128b821dc8722;hp=9908cc1fd0a6641d5cb82cfd8694838413b11b73;hb=7baeafc622631ac64204a54af827dd449de525a0;hpb=d6f688546ed3a60afb068cd018b093ed7d281ab7 diff --git a/common/files/cfgreader.c b/common/files/cfgreader.c index 9908cc1..dd0e575 100644 --- a/common/files/cfgreader.c +++ b/common/files/cfgreader.c @@ -48,7 +48,7 @@ struct CFG_Header *CFG_ReadFile(char *filename) /* Open file */ if ((handle = fopen(filename, "r")) == NULL) { #ifdef DEBUG - fprintf( stderr, "CFG_ReadFile - open %s: %s\n", filename, strerror(errno)); +// fprintf( stderr, "CFG_ReadFile - open %s: %s\n", filename, strerror(errno)); #endif /* DEBUG */ return NULL; } @@ -104,7 +104,7 @@ struct CFG_Header *CFG_ReadFile(char *filename) cfg_info = heading; #ifdef DEBUG - fprintf(stderr, "Added new section %s\n", heading->section); +// fprintf(stderr, "Added new section %s\n", heading->section); #endif /* Go on to next line */ @@ -153,7 +153,7 @@ struct CFG_Header *CFG_ReadFile(char *filename) cfg_info->entries = entry; #ifdef DEBUG - fprintf(stderr, "Adding key/value %s/%s\n", entry->key, entry->value); +// fprintf(stderr, "Adding key/value %s/%s\n", entry->key, entry->value); #endif /* Go on to next line */ continue; @@ -265,7 +265,7 @@ struct CFG_Header *CFG_FindGnokiirc() if ((cfg_info = CFG_ReadFile("/etc/gnokiirc")) == NULL) { /* That failed too so exit */ #ifdef DEBUG - fprintf(stderr, _("Couldn't open %s or /etc/gnokiirc. Using defaults...\n"), rcfile); +// fprintf(stderr, _("Couldn't open %s or /etc/gnokiirc. Using defaults...\n"), rcfile); #endif /* DEBUG */ return NULL; } @@ -276,7 +276,7 @@ struct CFG_Header *CFG_FindGnokiirc() if ((cfg_info = CFG_ReadFile("gnokiirc")) == NULL) { /* That failed too so exit */ #ifdef DEBUG - fprintf(stderr, _("Couldn't open %s or gnokiirc. Using defaults...\n"), rcfile); +// fprintf(stderr, _("Couldn't open %s or gnokiirc. Using defaults...\n"), rcfile); #endif /* DEBUG */ return NULL; }