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
} 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 {
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