]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix bug 921 by increasing the number of tries to create a new volume
authorKern Sibbald <kern@sibbald.com>
Wed, 29 Aug 2007 10:46:56 +0000 (10:46 +0000)
committerKern Sibbald <kern@sibbald.com>
Wed, 29 Aug 2007 10:46:56 +0000 (10:46 +0000)
     from 11 to 100.

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

bacula/src/dird/newvol.c
bacula/technotes-2.3

index d8aed9027b9c4936a06d8b081bba3632d38b7aa0..2a345ce8d35ed14f7e9dee4aeda87cd7bb0c37e8 100644 (file)
@@ -120,7 +120,7 @@ static bool create_simple_name(JCR *jcr, MEDIA_DBR *mr, POOL_DBR *pr)
    /* See if volume already exists */
    mr->VolumeName[0] = 0;
    bstrncpy(name, pr->LabelFormat, sizeof(name));
-   for (int i=pr->NumVols+1; i<(int)pr->NumVols+11; i++) {
+   for (int i=pr->NumVols+1; i<(int)pr->NumVols+100; i++) {
       MEDIA_DBR tmr;
       memset(&tmr, 0, sizeof(tmr));
       sprintf(num, "%04d", i);
index e46ca39912ca63cec972ab7b37a635649ebba2b0..47da48348884eeef0b751f366b56f12411fee15f 100644 (file)
@@ -1,6 +1,12 @@
               Technical notes on version 2.3
 
 General:
+29Aug07
+kes  Fix bug 921 by increasing the number of tries to create a new volume
+     from 11 to 100.
+kes  Rework bmsg in ua_output to use va_copy() so that bvsnprintf()
+     can be called multiple times.  Implement a version for machines
+     without va_copy() that gets a big buffer.
 25Aug07
 kes  Integrate more portable zone offset code into bsmtp.c
      Submitted by Attila Fülöp.