]> git.sur5r.net Git - bacula/bacula/blob - bacula/patches/1.34.6/1.34.6-ACL.patch
ebl add joberrors to job record
[bacula/bacula] / bacula / patches / 1.34.6 / 1.34.6-ACL.patch
1
2 This patch fixes a bug where the enable_acl=yes flag was not
3 being properly received by the File daemon.
4 It can be applied to version 1.34.6 with the following:
5
6  cd <bacula-source>
7  patch -p0 <1.34.6-ACL.patch
8  make
9  make install
10  ...
11
12 Index: src/filed/job.c
13 ===================================================================
14 RCS file: /cvsroot/bacula/bacula/src/filed/job.c,v
15 retrieving revision 1.78
16 diff -u -r1.78 job.c
17 --- src/filed/job.c     12 Jun 2004 12:38:16 -0000      1.78
18 +++ src/filed/job.c     15 Oct 2004 07:20:28 -0000
19 @@ -833,6 +833,9 @@
20        case 'k':
21          fo->flags |= FO_KEEPATIME;
22          break;
23 +      case 'A':
24 +        fo->flags |= FO_ACL;
25 +        break;
26        case 'V':                  /* verify options */
27          /* Copy Verify Options */
28           for (j=0; *p && *p != ':'; p++) {