]> git.sur5r.net Git - bacula/bacula/commitdiff
Misc
authorKern Sibbald <kern@sibbald.com>
Wed, 1 Oct 2003 09:16:48 +0000 (09:16 +0000)
committerKern Sibbald <kern@sibbald.com>
Wed, 1 Oct 2003 09:16:48 +0000 (09:16 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@718 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/ReleaseNotes
bacula/kernstodo
bacula/src/findlib/bfile.c
bacula/src/stored/mount.c

index 792bdc9e110ad008a5afe6e2eac9b41e47ad23d0..d2a70b5ba8979ab536bc7b4a209846202459e369 100644 (file)
@@ -22,6 +22,10 @@ Major Changes this Release:
   be used is also added to the "status dir" output.
 - Lots of fixes with variable expansion and counter variables
 - Implemented a new Include/Exclude syntax.
+- While writing a tape, an end of file mark will be written
+  every 1Gb. This makes restores faster. If you want to
+  change this use "Maximum File Size" in the SD Device
+  resource.
 
 
 Other Changes this Release:
index 2fd0b1e69720b88e53f5609b575438e0f55b7ef3..ad3ed564e05c40a637705926f66d1acdbc7b6e83 100644 (file)
@@ -23,16 +23,16 @@ Testing to do: (painful)
 - Figure out how to use ssh or stunnel to protect Bacula communications.
 - Test connect timeouts.
 
-For 1.32 Testing/Documentation:
+For 1.33 Testing/Documentation:
 - Document new records in Director. SDAddress SDDeviceName, SDPassword.
   FDPassword, FDAddress, DBAddress, DBPort, DBPassword.
 - Document new Include/Exclude ...
 - Add test of exclusion, test multiple Include {} statements.
 - Add counter variable test.
                 
-For 1.32:
-
 For 1.33
+- Implement scan: for every slot it finds, zero the slot of
+  Volume other volume having that slot.
 - When job rescheduled, status gives is waiting for Client Rufus 
   to connect to Storage File. Dir needs to inform SD that job
   is rescheduled.
@@ -958,4 +958,3 @@ Done: (see kernsdone for more)
 - Document that it is safe to use the drive when the lights stop flashing.
 - Document all the status codes JobLevel, JobType, JobStatus.
 - Add GUI interface to manual
-
index 3f2c9539006b6efd9c3f0a355ceec923db7094ae..b09bde218019dddef2bbeb6bdfd1c35b84af131b 100644 (file)
@@ -482,9 +482,11 @@ int bopen(BFILE *bfd, const char *fname, int flags, mode_t mode)
 
 int bclose(BFILE *bfd)
 { 
-   int stat = close(bfd->fid);
+   int stat;  
+   stat = close(bfd->fid);
    bfd->berrno = errno;
    bfd->fid = -1;
+
    return stat;
 }
 
index 4d45f4e384c0466f9b9871766cf0e9acf1b8de12..b67c1cb526954f48e6e3d13e0cee394cf2f9d505 100644 (file)
@@ -44,7 +44,6 @@
  * This routine returns a 0 only if it is REALLY
  *  impossible to get the requested Volume.
  *
- *    *****FIXME****** handle "Recycle" volume ******
  */
 int mount_next_write_volume(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, int release)
 {