[BusyBox] exclude_list

Larry Doolittle ldoolitt at recycle.lbl.gov
Fri Apr 20 21:20:53 UTC 2001


OK. 
This patch makes it more clear that paragraph of code is disabled.
Sorry for the confusion.

     - Larry

--- /home/ldoolitt/cvs/busybox/libbb/untar.c	Mon Apr 16 08:46:57 2001
+++ untar.c	Fri Apr 20 14:18:02 2001
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
 /*
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -103,7 +104,8 @@
 			next_header_offset += (512 - size % 512);
 		}
 
-		/* If an exclude list is specified check current file against list 
+#if 0
+		/* If an exclude list is specified check current file against list */
 		if (*exclude_list != NULL) {
 			i = 0;
 			while (exclude_list[i] != 0) {
@@ -115,7 +117,8 @@
 		if (exclude_list[i] != 0) {
 				continue;
 			}
-		} */
+		}
+#endif
 
 		if (untar_function & (extract_contents | extract_verbose_extract | extract_contents_to_file)) {
 			fprintf(output, "%s\n", raw_tar_header.name);





More information about the busybox mailing list