Files
core/system/base/vixie-cron/files/vixie-cron-4.1-commandline.patch
2015-02-24 11:18:35 +02:00

13 lines
360 B
Diff

--- entry.c 2004-08-27 20:09:34.000000000 +0200
+++ /root/entry.c 2004-09-26 14:41:46.929137000 +0200
@@ -336,7 +336,8 @@
/* If the first character of the command is '-' it is a cron option.
*/
- while ((ch = get_char(file)) == '-') {
+ ch = get_char(file);
+ while (ch == '-') {
switch (ch = get_char(file)) {
case 'q':
e->flags |= DONT_LOG;