diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-13 17:06:53 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-13 17:06:53 +0000 |
commit | 87cf2ee8abec24e6399653e4856ab3543e7aadf7 (patch) | |
tree | c86b5be4f9e4e363fce56b7749e0ee5dc1c6fb2d /archival | |
parent | d5fe880a57bc140f2e1469d2f1c75f815df94eff (diff) | |
download | busybox-w32-87cf2ee8abec24e6399653e4856ab3543e7aadf7.tar.gz busybox-w32-87cf2ee8abec24e6399653e4856ab3543e7aadf7.tar.bz2 busybox-w32-87cf2ee8abec24e6399653e4856ab3543e7aadf7.zip |
tar: move FNM_LEADING_DIR #define to tar.c - no other users.
Closes bug 1332.
Diffstat (limited to 'archival')
-rw-r--r-- | archival/tar.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/archival/tar.c b/archival/tar.c index 64975c428..6b3738365 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -28,6 +28,11 @@ | |||
28 | #include "libbb.h" | 28 | #include "libbb.h" |
29 | #include "unarchive.h" | 29 | #include "unarchive.h" |
30 | 30 | ||
31 | /* FIXME: Stop using this non-standard feature */ | ||
32 | #ifndef FNM_LEADING_DIR | ||
33 | #define FNM_LEADING_DIR 0 | ||
34 | #endif | ||
35 | |||
31 | #define block_buf bb_common_bufsiz1 | 36 | #define block_buf bb_common_bufsiz1 |
32 | 37 | ||
33 | #if ENABLE_FEATURE_TAR_CREATE | 38 | #if ENABLE_FEATURE_TAR_CREATE |