From: Eric Bollengier Date: Sat, 30 Dec 2006 09:30:03 +0000 (+0000) Subject: ebl works against 1.39.34 X-Git-Tag: Release-2.0.0~57 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c3874a77e37ac7cc1c10eb393a5a244fdeaa706c;p=bacula%2Fbacula ebl works against 1.39.34 git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3860 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/patches/testing/project-include-jobid-in-spool-name.patch b/bacula/patches/testing/project-include-jobid-in-spool-name.patch new file mode 100644 index 0000000000..d19f13c052 --- /dev/null +++ b/bacula/patches/testing/project-include-jobid-in-spool-name.patch @@ -0,0 +1,11 @@ +--- my/src/stored/spool.c 2006-12-13 19:02:47.000000000 +0100 ++++ cvs/src/stored/spool.c 2006-12-30 10:24:31.000000000 +0100 +@@ -154,8 +154,8 @@ + } else { + dir = working_directory; + } +- Mmsg(name, "%s/%s.data.%s.%s.spool", dir, my_name, dcr->jcr->Job, +- dcr->device->hdr.name); ++ Mmsg(name, "%s/%s.data.%u.%s.%s.spool", dir, my_name, dcr->jcr->JobId, ++ dcr->jcr->Job, dcr->device->hdr.name); + } diff --git a/bacula/patches/testing/project-include-jobid-in-spool-name.readme b/bacula/patches/testing/project-include-jobid-in-spool-name.readme new file mode 100644 index 0000000000..d02e701e3a --- /dev/null +++ b/bacula/patches/testing/project-include-jobid-in-spool-name.readme @@ -0,0 +1,8 @@ +From: Eric Bollengier + +This patch implement the include JobID in spool file name project + +$Log$ +Revision 1.1 2006/12/30 09:30:03 ricozz +ebl works against 1.39.34 +