aboutsummaryrefslogtreecommitdiff
path: root/include/unarchive.h
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-10-29 03:37:54 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-10-29 03:37:54 +0000
commitf235d057735a0871cd9b096bbb0ede6d42643f79 (patch)
treef709d900e417eb7b6ceef03dcff6d897a73b5714 /include/unarchive.h
parent1c834407e39197d9d3f127d4783b75af5e793319 (diff)
downloadbusybox-f235d057735a0871cd9b096bbb0ede6d42643f79.tar.gz
Use the return value from uncompress_bunzip, fix some typo
Diffstat (limited to 'include/unarchive.h')
-rw-r--r--include/unarchive.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unarchive.h b/include/unarchive.h
index 1c4e851ab..9f1331338 100644
--- a/include/unarchive.h
+++ b/include/unarchive.h
@@ -35,7 +35,7 @@ typedef struct archive_handle_s {
/* process the header component, e.g. tar -t */
void (*action_header)(const file_header_t *);
- /* process the data componenet, e.g. extract to filesystem */
+ /* process the data component, e.g. extract to filesystem */
void (*action_data)(struct archive_handle_s *);
/* How to process any sub archive, e.g. get_header_tar_gz */
@@ -56,7 +56,7 @@ typedef struct archive_handle_s {
/* Function that skips data: read_by_char or read_by_skip */
void (*seek)(const struct archive_handle_s *archive_handle, const unsigned int amount);
- /* Temperary storage */
+ /* Temporary storage */
char *buffer;
/* Misc. stuff */