aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/crond.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c
index 154243c78..c7ee793a5 100644
--- a/miscutils/crond.c
+++ b/miscutils/crond.c
@@ -470,14 +470,12 @@ static void SynchronizeFile(const char *fileName)
470 pline = &file->cf_LineBase; 470 pline = &file->cf_LineBase;
471 471
472 while (--maxLines 472 while (--maxLines
473 && (n = config_read(parser, tokens, 6, 1, "# \t", PARSE_LAST_IS_GREEDY)) 473 && (n = config_read(parser, tokens, 6, 1, "# \t", PARSE_LAST_IS_GREEDY|PARSE_KEEP_COPY))
474 ) { 474 ) {
475 CronLine *line; 475 CronLine *line;
476 476
477 USE_FEATURE_PARSE_COPY( 477 if (DebugOpt)
478 if (DebugOpt) 478 crondlog(LVL5 "user:%s entry:%s", fileName, parser->data);
479 crondlog(LVL5 "user:%s entry:%s", fileName, parser->data);
480 )
481 479
482 /* check if line is setting MAILTO= */ 480 /* check if line is setting MAILTO= */
483 if (0 == strncmp(tokens[0], "MAILTO=", 7)) { 481 if (0 == strncmp(tokens[0], "MAILTO=", 7)) {