diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-07-12 10:24:57 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-07-12 10:24:57 +0000 |
commit | 1ee7f3f996c68015a1c5aa1cf73e6b8b70100e92 (patch) | |
tree | 39a696609a5c484294907cfa62288758ba798229 /include/libbb.h | |
parent | 34f6c9190165c1263ed6aee5381a1123c35cf2c0 (diff) | |
download | busybox-w32-1ee7f3f996c68015a1c5aa1cf73e6b8b70100e92.tar.gz busybox-w32-1ee7f3f996c68015a1c5aa1cf73e6b8b70100e92.tar.bz2 busybox-w32-1ee7f3f996c68015a1c5aa1cf73e6b8b70100e92.zip |
Quiet mode, sometimes error messages arent wanted
git-svn-id: svn://busybox.net/trunk/busybox@3073 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 4a4b9191c..224c561d5 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -237,7 +237,8 @@ enum extract_functions_e { | |||
237 | extract_control_tar_gz = 128, | 237 | extract_control_tar_gz = 128, |
238 | extract_unzip_only = 256, | 238 | extract_unzip_only = 256, |
239 | extract_unconditional = 512, | 239 | extract_unconditional = 512, |
240 | extract_create_leading_dirs = 1024 | 240 | extract_create_leading_dirs = 1024, |
241 | extract_quiet = 2048 | ||
241 | }; | 242 | }; |
242 | char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_header)(FILE *), | 243 | char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_header)(FILE *), |
243 | const int extract_function, const char *prefix, char **extract_names); | 244 | const int extract_function, const char *prefix, char **extract_names); |