aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-27 03:20:00 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-27 03:20:00 +0000
commitc265b17550dc90237c7dc03da7b58ceea8c74bbf (patch)
tree03475744acb5b65a94debb716127b0461d50b094
parent087bc82bb0eabf8dedb8b35c85ea0294eaae2ce3 (diff)
downloadbusybox-w32-c265b17550dc90237c7dc03da7b58ceea8c74bbf.tar.gz
busybox-w32-c265b17550dc90237c7dc03da7b58ceea8c74bbf.tar.bz2
busybox-w32-c265b17550dc90237c7dc03da7b58ceea8c74bbf.zip
Wrap exclude_file() inside a #ifdef CONFIG_FEATURE_TAR_EXCLUDE block
-rw-r--r--archival/tar.c2
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,
315 return ( TRUE); 315 return ( TRUE);
316} 316}
317 317
318# if defined CONFIG_FEATURE_TAR_EXCLUDE
318static int exclude_file(char **excluded_files, const char *file) 319static int exclude_file(char **excluded_files, const char *file)
319{ 320{
320 int i; 321 int i;
@@ -341,6 +342,7 @@ static int exclude_file(char **excluded_files, const char *file)
341 342
342 return 0; 343 return 0;
343} 344}
345#endif
344 346
345static int writeFileToTarball(const char *fileName, struct stat *statbuf, void* userData) 347static int writeFileToTarball(const char *fileName, struct stat *statbuf, void* userData)
346{ 348{