]> git.sur5r.net Git - bacula/bacula/blob - bacula/patches/3.0.1-btape.patch
remove a ref to sqlite
[bacula/bacula] / bacula / patches / 3.0.1-btape.patch
1
2  This patch can be applied to version 3.0.1 and should
3  fix bug #1309 btape fill multiple tape generates error but
4  end of fill test says successful.
5
6  Apply it to version 3.0.1 with:
7
8  cd <bacula-source>
9  patch -p0 <3.0.1-btape.patch
10  ./configure <your-options>
11  make
12  ...
13  make install
14
15
16
17 Index: src/stored/btape.c
18 ===================================================================
19 --- src/stored/btape.c  (revision 8902)
20 +++ src/stored/btape.c  (working copy)
21 @@ -414,7 +414,6 @@
22        }
23     }
24     dev->rewind(dcr);
25 -   dev->weof(1);
26     write_new_volume_label_to_dev(dcr, cmd, "Default", false,/*no relabel*/ true /* label dvd now */);
27     Pmsg1(-1, _("Wrote Volume label for volume \"%s\".\n"), cmd);
28  }