]> git.sur5r.net Git - bacula/bacula/commitdiff
kes Apply patch from Allan Black <Allan.Black@btconnect.com> that
authorKern Sibbald <kern@sibbald.com>
Wed, 8 Aug 2007 14:22:00 +0000 (14:22 +0000)
committerKern Sibbald <kern@sibbald.com>
Wed, 8 Aug 2007 14:22:00 +0000 (14:22 +0000)
     corrects a typo in the Recycle status check in db_find_next_volume().
     This will probably fix a number of annoying problems with multiple
     Recycled volumes.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5305 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/cats/sql_find.c
bacula/technotes-2.1

index 04e2b45e73f760825c69cfe6caf954435a919bd8..5894a60325e1f89c3dc9427ba12574ffe4c97cf5 100644 (file)
@@ -300,7 +300,7 @@ db_find_next_volume(JCR *jcr, B_DB *mdb, int item, bool InChanger, MEDIA_DBR *mr
       } else {
          changer[0] = 0;
       }
-      if (strcmp(mr->VolStatus, "Recycled") == 0 ||
+      if (strcmp(mr->VolStatus, "Recycle") == 0 ||
           strcmp(mr->VolStatus, "Purged") == 0) {
          order = "ORDER BY LastWritten ASC,MediaId";  /* take oldest */
       } else {
index 9198c91d8454c76656b37cf52a97639c1f39a499..a1f7d0638c3a5f8c1bcdfa2b4691c7ffd0c2c9cc 100644 (file)
@@ -2,6 +2,10 @@
 
 General:
 08Aug07
+kes  Apply patch from Allan Black <Allan.Black@btconnect.com> that     
+     corrects a typo in the Recycle status check in db_find_next_volume().
+     This will probably fix a number of annoying problems with multiple
+     Recycled volumes.
 kes  Modify most of dird/msgchan.c to use bsock class calls rather than
      bnet calls -- no functionality change.
 07Aug07