aboutsummaryrefslogtreecommitdiff
path: root/miscutils/crond.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-19 09:27:19 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-19 09:27:19 +0000
commit2e157ddf9ecd9d58864425f0e87409ddc218df94 (patch)
tree18f415d4847897a12d790b545f94c32ae68c199c /miscutils/crond.c
parentbd28f6bf7f53ede8df39112d40cb52f2a3d00177 (diff)
downloadbusybox-w32-2e157ddf9ecd9d58864425f0e87409ddc218df94.tar.gz
busybox-w32-2e157ddf9ecd9d58864425f0e87409ddc218df94.tar.bz2
busybox-w32-2e157ddf9ecd9d58864425f0e87409ddc218df94.zip
libbb: updated config_parse() from Vladimir
function old new delta config_read 385 460 +75 runsvdir_main 1701 1716 +15 readit 331 338 +7 passwd_main 1049 1053 +4 parse_command 1504 1507 +3 decode_format_string 822 824 +2 bb__parsespent 117 119 +2 udhcp_get_option 221 222 +1 changepath 196 194 -2 parse_inittab 400 396 -4 nameif_main 683 679 -4 make_device 1176 1172 -4 config_open 48 40 -8 expand_main 698 689 -9 readcmd 1012 1002 -10 config_free_data 37 21 -16 SynchronizeFile 683 643 -40 sleep_main 474 362 -112 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 8/10 up/down: 109/-209) Total: -100 bytes
Diffstat (limited to 'miscutils/crond.c')
-rw-r--r--miscutils/crond.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c
index d8423cf4f..154243c78 100644
--- a/miscutils/crond.c
+++ b/miscutils/crond.c
@@ -469,12 +469,15 @@ static void SynchronizeFile(const char *fileName)
469 file->cf_User = xstrdup(fileName); 469 file->cf_User = xstrdup(fileName);
470 pline = &file->cf_LineBase; 470 pline = &file->cf_LineBase;
471 471
472 while (--maxLines && (n=config_read(parser, tokens, 6, 0, " \t", '#')) >= 0) { 472 while (--maxLines
473 && (n = config_read(parser, tokens, 6, 1, "# \t", PARSE_LAST_IS_GREEDY))
474 ) {
473 CronLine *line; 475 CronLine *line;
474 476
475 if (DebugOpt) { 477 USE_FEATURE_PARSE_COPY(
476 crondlog(LVL5 "user:%s entry:%s", fileName, parser->data); 478 if (DebugOpt)
477 } 479 crondlog(LVL5 "user:%s entry:%s", fileName, parser->data);
480 )
478 481
479 /* check if line is setting MAILTO= */ 482 /* check if line is setting MAILTO= */
480 if (0 == strncmp(tokens[0], "MAILTO=", 7)) { 483 if (0 == strncmp(tokens[0], "MAILTO=", 7)) {
@@ -485,7 +488,7 @@ static void SynchronizeFile(const char *fileName)
485 continue; 488 continue;
486 } 489 }
487 /* check if a minimum of tokens is specified */ 490 /* check if a minimum of tokens is specified */
488 if (n < 5) 491 if (n < 6)
489 continue; 492 continue;
490 *pline = line = xzalloc(sizeof(CronLine)); 493 *pline = line = xzalloc(sizeof(CronLine));
491 /* parse date ranges */ 494 /* parse date ranges */