diff options
author | Tim Kientzle <kientzle@FreeBSD.org> | 2004-08-07 17:17:11 +0000 |
---|---|---|
committer | Tim Kientzle <kientzle@FreeBSD.org> | 2004-08-07 17:17:11 +0000 |
commit | dfee4c496f8ce45c701600db9aff5dfcaa4f8505 (patch) | |
tree | 08627de5a1e6ce580cc175ac621621381c3810c6 /usr.bin/tar/bsdtar.c | |
parent | 659c68935cf5ece92aed7401c9cc84ca4e2c075b (diff) |
Notes
Diffstat (limited to 'usr.bin/tar/bsdtar.c')
-rw-r--r-- | usr.bin/tar/bsdtar.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/tar/bsdtar.c b/usr.bin/tar/bsdtar.c index aa9fc95022af6..535a8aa845d1e 100644 --- a/usr.bin/tar/bsdtar.c +++ b/usr.bin/tar/bsdtar.c @@ -65,11 +65,14 @@ struct option { #include "bsdtar.h" +#ifdef linux +#define _PATH_DEFTAPE "/dev/st0" +#endif + #ifndef _PATH_DEFTAPE #define _PATH_DEFTAPE "/dev/tape" #endif - static int bsdtar_getopt(struct bsdtar *, const char *optstring, const struct option **poption); static void long_help(struct bsdtar *); |