modules: fixes ko files that were renamed in 3.1
[openwrt/svn-archive/archive.git] / package / busybox / patches / 000-upstream-crond.patch
1 --- a/miscutils/crond.c
2 +++ b/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));