diff options
author | Denis Vlasenko | 2006-10-20 13:28:22 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-20 13:28:22 +0000 |
commit | e1a0d486e4804eae098571f1a6788394c2ee51ae (patch) | |
tree | c6f3435738900c8d53832eb919b1b2c3d524f2e5 /archival/tar.c | |
parent | dd2982882bb192ea757f32514bc2ea0bc96f5ba0 (diff) | |
download | busybox-e1a0d486e4804eae098571f1a6788394c2ee51ae.zip busybox-e1a0d486e4804eae098571f1a6788394c2ee51ae.tar.gz |
message string changes, mostly for consistency, also -32 bytes in .rodata
Diffstat (limited to 'archival/tar.c')
-rw-r--r-- | archival/tar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archival/tar.c b/archival/tar.c index 2c4280c..d96d202 100644 --- a/archival/tar.c +++ b/archival/tar.c @@ -496,7 +496,7 @@ static int writeTarFile(const int tar_fd, const int verboseFlag, freeHardLinkInfo(&tbInfo.hlInfoHead); if (errorFlag) - bb_error_msg("Error exit delayed from previous errors"); + bb_error_msg("error exit delayed from previous errors"); if (gzipPid && waitpid(gzipPid, NULL, 0)==-1) bb_error_msg("cannot wait"); @@ -540,7 +540,7 @@ static llist_t *append_file_list_to_list(llist_t *list) #ifdef CONFIG_FEATURE_TAR_COMPRESS static char get_header_tar_Z(archive_handle_t *archive_handle) { - /* Cant lseek over pipe's */ + /* Can't lseek over pipes */ archive_handle->seek = seek_by_read; /* do the decompression, and cleanup */ @@ -556,7 +556,7 @@ static char get_header_tar_Z(archive_handle_t *archive_handle) /* nothing */; /* Can only do one file at a time */ - return(EXIT_FAILURE); + return EXIT_FAILURE; } #else #define get_header_tar_Z 0 |