summaryrefslogtreecommitdiff
path: root/sysutils/bacula/files/patch-weekofmonth
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/bacula/files/patch-weekofmonth')
-rw-r--r--sysutils/bacula/files/patch-weekofmonth62
1 files changed, 0 insertions, 62 deletions
diff --git a/sysutils/bacula/files/patch-weekofmonth b/sysutils/bacula/files/patch-weekofmonth
deleted file mode 100644
index e9cfe667655b..000000000000
--- a/sysutils/bacula/files/patch-weekofmonth
+++ /dev/null
@@ -1,62 +0,0 @@
-
-This patch fixes an incorrect calculation of the week
-of the month reported by Volker Sauer. It should work on either
-1.32e or 1.32f.
-
-Apply the patch with:
-
- cd <bacula-source>
- patch -p0 <1.32f-weekofmonth.patch
- make
- ...
-
-Index: src/dird/scheduler.c
-===================================================================
-RCS file: /cvsroot/bacula/bacula/src/dird/scheduler.c,v
-retrieving revision 1.13.6.1
-diff -u -b -r1.13.6.1 scheduler.c
---- src/dird/scheduler.c 21 Dec 2003 15:17:42 -0000 1.13.6.1
-+++ src/dird/scheduler.c 6 Jan 2004 09:43:31 -0000
-@@ -205,7 +205,7 @@
- mday = tm.tm_mday - 1;
- wday = tm.tm_wday;
- month = tm.tm_mon;
-- wom = tm_wom(tm.tm_mday, tm.tm_wday); /* get week of month */
-+ wom = mday / 7;
- woy = tm_woy(now); /* get week of year */
-
- /* Loop through all jobs */
-@@ -237,7 +237,7 @@
- if (bit_is_set(next_hour, run->hour)) {
- tm.tm_hour++;
- if (tm.tm_hour > 23) {
-- tm.tm_hour = 0;
-+ continue; /* next day */
- }
- runtime = mktime(&tm);
- add_job(job, run, now, runtime);
-Index: src/dird/ua_output.c
-===================================================================
-RCS file: /cvsroot/bacula/bacula/src/dird/ua_output.c,v
-retrieving revision 1.25.2.11.2.3
-diff -u -b -r1.25.2.11.2.3 ua_output.c
---- src/dird/ua_output.c 21 Dec 2003 15:17:42 -0000 1.25.2.11.2.3
-+++ src/dird/ua_output.c 6 Jan 2004 09:43:32 -0000
-@@ -454,7 +454,7 @@
- mday = tm.tm_mday - 1;
- wday = tm.tm_wday;
- month = tm.tm_mon;
-- wom = tm_wom(tm.tm_mday, tm.tm_wday);
-+ wom = mday / 7;
- woy = tm_woy(now);
-
- /* Break down tomorrow into components */
-@@ -463,7 +463,7 @@
- tmday = tm.tm_mday - 1;
- twday = tm.tm_wday;
- tmonth = tm.tm_mon;
-- twom = tm_wom(tm.tm_mday, tm.tm_wday);
-+ twom = tmday / 7;
- twoy = tm_woy(tomorrow);
-
- if (run == NULL) {