diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-10-27 03:20:00 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-10-27 03:20:00 +0000 |
commit | c265b17550dc90237c7dc03da7b58ceea8c74bbf (patch) | |
tree | 03475744acb5b65a94debb716127b0461d50b094 /archival/tar.c | |
parent | 087bc82bb0eabf8dedb8b35c85ea0294eaae2ce3 (diff) |
Wrap exclude_file() inside a #ifdef CONFIG_FEATURE_TAR_EXCLUDE block
Diffstat (limited to 'archival/tar.c')
-rw-r--r-- | archival/tar.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archival/tar.c b/archival/tar.c index 9459a5061..815949767 100644 --- a/archival/tar.c +++ b/archival/tar.c @@ -315,6 +315,7 @@ writeTarHeader(struct TarBallInfo *tbInfo, const char *header_name, return ( TRUE); } +# if defined CONFIG_FEATURE_TAR_EXCLUDE static int exclude_file(char **excluded_files, const char *file) { int i; @@ -341,6 +342,7 @@ static int exclude_file(char **excluded_files, const char *file) return 0; } +#endif static int writeFileToTarball(const char *fileName, struct stat *statbuf, void* userData) { |