from 11 to 100.
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5413
91ce42f0-d328-0410-95d8-
f526ca767f89
/* 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);
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.