aboutsummaryrefslogtreecommitdiffstats
path: root/src/conf.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/conf.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/conf.c b/src/conf.c
index 557024dc5..79bbfd3a1 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -362,7 +362,6 @@ read_rc_file(char *filename, options_t *options)
if( filename==NULL )
return -1;
- D("Reading configuration file %s\n", filename);
if( (fd=open(filename,O_RDONLY)) <0 )
{
perror(filename);
@@ -474,8 +473,6 @@ read_rc_file(char *filename, options_t *options)
{
g_free(options->timedisplay_type);
options->timedisplay_type=g_strdup(parse_timedisplay_type(value));
- D("deb");
- D(options->timedisplay_type);
}
/* color definition */
else if( !strcasecmp(CONF_COLOR_DEFINITION, name) )
@@ -587,14 +584,10 @@ read_rc_file(char *filename, options_t *options)
fprintf(stderr,
_("Unknown configuration parameter: %s\n"),
name);
- D("conf> %s = %s %s\n", name, value,
- match_found ? "" : "- UNKNOWN SETTING!" );
}
}
}
- D("--\n\n");
-
if( free_filename )
g_free(filename);