043a846ca4a52709a6f3689d9c7924a26f7bd02b
[busybox-power] / debian / patches / hotfixes / busybox-1.19.2-crond.patch
1 --- busybox-1.19.2/miscutils/crond.c
2 +++ busybox-1.19.2-crond/miscutils/crond.c
3 @@ -861,7 +861,8 @@ int crond_main(int argc UNUSED_PARAM, ch
4  
5         /* "-b after -f is ignored", and so on for every pair a-b */
6         opt_complementary = "f-b:b-f:S-L:L-S" IF_FEATURE_CROND_D(":d-l")
7 -                       ":l+:d+"; /* -l and -d have numeric param */
8 +                       /* -l and -d have numeric param */
9 +                       ":l+" IF_FEATURE_CROND_D(":d+");
10         opts = getopt32(argv, "l:L:fbSc:" IF_FEATURE_CROND_D("d:"),
11                         &G.log_level, &G.log_filename, &G.crontab_dir_name
12                         IF_FEATURE_CROND_D(,&G.log_level));