]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Update IS_TAPE() macro to work in all cases
authorEric Bollengier <eric@eb.homelinux.org>
Wed, 7 May 2008 20:12:40 +0000 (20:12 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Wed, 7 May 2008 20:12:40 +0000 (20:12 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6910 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/baconfig.h

index 180f6824fa899f5207e04bdf646aca8c75394148..f965033d606cce62f5f714d79222ce2d5178a170 100644 (file)
@@ -87,7 +87,7 @@ void InitWinAPIWrapper();
 #define  tape_read            win32_tape_read
 #define  tape_write           win32_tape_write
 #define  tape_close           win32_tape_close
-#define  IS_TAPE(x)           (0)
+#define  IS_TAPE(x)           S_ISCHR(x)
 
 #define sbrk(x)  0
 
@@ -119,7 +119,7 @@ void InitWinAPIWrapper();
 #  define  tape_read            faketape_read
 #  define  tape_write           faketape_write
 #  define  tape_close           faketape_close
-#  define  IS_TAPE(x)           (S_ISCHR(x) || S_ISREG(x))
+#  define  IS_TAPE(x)           S_ISREG(x)
 #else  /* UNIX && !FAKETAPE */
 #  define  tape_open            ::open
 #  define  tape_ioctl           ::ioctl