]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix bug #2091 bad vtape device definitions
authorMartin Simmons <martin@lispworks.com>
Thu, 7 Aug 2014 07:58:35 +0000 (09:58 +0200)
committerKern Sibbald <kern@sibbald.com>
Thu, 7 Aug 2014 07:58:35 +0000 (09:58 +0200)
bacula/src/stored/vtape_dev.h

index 98c09400d0fb0c9721e5076c62259d9befc5408b..b5aa36b1b0a9d235b2da32412ed56b295e236273 100644 (file)
@@ -105,8 +105,8 @@ public:
 class vtape: public DEVICE {
 public:
    int d_open(const char *pathname, int flags) { return -1; }
-   ssize_t d_read(void *buffer, size_t count) { return -1; }
-   ssize_t d_write(const void *buffer, size_t count) { return -1; }
+   ssize_t d_read(int fd, void *buffer, size_t count) { return -1; }
+   ssize_t d_write(int fd, const void *buffer, size_t count) { return -1; }
    int d_close(int) { return -1; }
    int d_ioctl(int fd, ioctl_req_t request, char *mt=NULL) { return -1; }
    boffset_t lseek(DCR *dcr, off_t offset, int whence) { return -1; }