aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2001-07-11 17:32:14 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2001-07-11 17:32:14 +0000
commitc1270088401f1e3f4f8a6bfa2ff5b7228c4a8da0 (patch)
tree06b6690e1666bbdccc2b7bb809f3c1bbd8ce2ac3 /include
parent481d19b38e068e7db8459cb0e108f8049ce5919d (diff)
downloadbusybox-c1270088401f1e3f4f8a6bfa2ff5b7228c4a8da0.tar.gz
Allow unarchive to redirect stdout (tobe used by dpkg applet)
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 0fc704501..4a4b9191c 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -239,7 +239,7 @@ enum extract_functions_e {
extract_unconditional = 512,
extract_create_leading_dirs = 1024
};
-char *unarchive(FILE *src_stream, file_header_t *(*get_header)(FILE *),
+char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_header)(FILE *),
const int extract_function, const char *prefix, char **extract_names);
char *deb_extract(const char *package_filename, FILE *out_stream, const int extract_function,
const char *prefix, const char *filename);