]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Fix a bug during tape initialization with MTSETDRVBUFFER.
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 17 Jan 2008 15:06:17 +0000 (15:06 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 17 Jan 2008 15:06:17 +0000 (15:06 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6296 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/stored/dev.c
bacula/technotes-2.3

index 31b6f6ec4a49d36f7a27b3e98c2862c81ce53f57..b8ef18713d61e17d1beccc9bbb2f64b9a6474364 100644 (file)
@@ -2385,7 +2385,7 @@ void set_os_device_parameters(DCR *dcr)
    }
 #endif
 #if defined(MTSETDRVBUFFER)
-   if (getpid() == 0) {          /* Only root can do this */
+   if (getuid() == 0) {          /* Only root can do this */
       mt_com.mt_op = MTSETDRVBUFFER;
       mt_com.mt_count = MT_ST_CLEARBOOLEANS;
       if (!dev->has_cap(CAP_TWOEOF)) {
index 20d33f5dd4b1350b20d348a182518ec61a85a133..22e87e8e21bc1414c23b351542f29aaffb924040 100644 (file)
@@ -1,6 +1,8 @@
               Technical notes on version 2.3
 
 General:
+17Jan08
+ebl  Fix a bug during tape initialization with MTSETDRVBUFFER.
 12Jan08
 kes  Fix Win32 build with new .def files and DLL_IMP_EXP ...
 10Jan08