diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2004-02-17 12:04:13 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2004-02-17 12:04:13 +0000 |
commit | a8f756fc7fed3b57fa154ec70a9c9b4a4a3d90af (patch) | |
tree | 7eab9bf9d82936b9c868161bc16b531bd81e9382 | |
parent | 6aa52234e8c0aa7da84220718e3289a308b3d702 (diff) | |
download | busybox-w32-a8f756fc7fed3b57fa154ec70a9c9b4a4a3d90af.tar.gz busybox-w32-a8f756fc7fed3b57fa154ec70a9c9b4a4a3d90af.tar.bz2 busybox-w32-a8f756fc7fed3b57fa154ec70a9c9b4a4a3d90af.zip |
Remove debugging
-rw-r--r-- | archival/libunarchive/get_header_tar.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/archival/libunarchive/get_header_tar.c b/archival/libunarchive/get_header_tar.c index 4e31b8521..fbca0f274 100644 --- a/archival/libunarchive/get_header_tar.c +++ b/archival/libunarchive/get_header_tar.c | |||
@@ -126,10 +126,8 @@ extern char get_header_tar(archive_handle_t *archive_handle) | |||
126 | case 0: | 126 | case 0: |
127 | case '0': | 127 | case '0': |
128 | if (last_char_is(file_header->name, '/')) { | 128 | if (last_char_is(file_header->name, '/')) { |
129 | printf("directory\n"); | ||
130 | file_header->mode |= S_IFDIR; | 129 | file_header->mode |= S_IFDIR; |
131 | } else { | 130 | } else { |
132 | printf("regular file\n"); | ||
133 | file_header->mode |= S_IFREG; | 131 | file_header->mode |= S_IFREG; |
134 | } | 132 | } |
135 | break; | 133 | break; |