]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl fix fifo stuff, bacula tries to rewind the fifo... Thanks to Andreas
authorEric Bollengier <eric@eb.homelinux.org>
Sat, 24 Feb 2007 21:53:05 +0000 (21:53 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Sat, 24 Feb 2007 21:53:05 +0000 (21:53 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.0@4236 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/stored/dev.c

index 491149be0083a9fc71ecdc9f294b6d4221a0ceca..b61d21624a9c47bd2791260b4039d63def03a420 100644 (file)
@@ -382,7 +382,8 @@ void DEVICE::open_tape_device(DCR *dcr, int omode)
          Dmsg0(050, "Rewind after open\n");
          mt_com.mt_op = MTREW;
          mt_com.mt_count = 1;
-         if (ioctl(fd, MTIOCTOP, (char *)&mt_com) < 0) {
+         /* rewind only if dev is a tape */
+         if (is_tape() && (ioctl(m_fd, MTIOCTOP, (char *)&mt_com) < 0)) {
             berrno be;
             dev_errno = errno;           /* set error status from rewind */
             ::close(fd);