From: Marco van Wieringen Date: Wed, 11 Aug 2010 13:30:25 +0000 (+0200) Subject: Fix typo so things compile on systems without vtape support. X-Git-Tag: Release-5.2.1~1135 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=089ffeb330bf0f780a0dc4ffda9b9e0957ddbba9;p=bacula%2Fbacula Fix typo so things compile on systems without vtape support. --- diff --git a/bacula/src/stored/vtape.h b/bacula/src/stored/vtape.h index b2bef53b69..42b49c927b 100644 --- a/bacula/src/stored/vtape.h +++ b/bacula/src/stored/vtape.h @@ -51,7 +51,7 @@ typedef enum { VT_SKIP_EOF /* Have already read the EOF byte */ } VT_READ_FM_MODE; -class vtape: public DEVICE{ +class vtape: public DEVICE { private: int fd; /* Our file descriptor */ @@ -118,7 +118,7 @@ public: int d_close(int) { return -1; } int d_ioctl(int fd, ioctl_req_t request, char *mt) { return -1; } boffset_t lseek(DCR *dcr, off_t offset, int whence) { return -1; } -} +}; #endif /* USE_VTAPE */