Branch update for mygnokii2002_03_17_19_29nl
[gnokii.git] / common / files / cfgreader.c
index ad25708..f7f35b9 100644 (file)
@@ -50,7 +50,7 @@ static 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;
         }
@@ -106,7 +106,7 @@ static 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 */
 
@@ -155,7 +155,7 @@ static 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;
@@ -267,7 +267,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;
                 }
@@ -278,7 +278,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;
                 }