Magellan Linux

Contents of /trunk/busybox/patches/busybox-1.19.2-crond.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1522 - (show annotations) (download)
Thu Sep 8 19:42:30 2011 UTC (12 years, 7 months ago) by niro
File size: 555 byte(s)
-added upstream 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));