diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-20 13:28:22 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-20 13:28:22 +0000 |
commit | 404aa1479965df0d5d019a6a14f62fa696419e4c (patch) | |
tree | c6f3435738900c8d53832eb919b1b2c3d524f2e5 /archival/tar.c | |
parent | 753fc33dda8a58173631650d3218e6f7b51ea58d (diff) | |
download | busybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.tar.gz busybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.tar.bz2 busybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.zip |
message string changes, mostly for consistency, also -32 bytes in .rodata
git-svn-id: svn://busybox.net/trunk/busybox@16412 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 2c4280cc4..d96d20227 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -496,7 +496,7 @@ static int writeTarFile(const int tar_fd, const int verboseFlag, | |||
496 | freeHardLinkInfo(&tbInfo.hlInfoHead); | 496 | freeHardLinkInfo(&tbInfo.hlInfoHead); |
497 | 497 | ||
498 | if (errorFlag) | 498 | if (errorFlag) |
499 | bb_error_msg("Error exit delayed from previous errors"); | 499 | bb_error_msg("error exit delayed from previous errors"); |
500 | 500 | ||
501 | if (gzipPid && waitpid(gzipPid, NULL, 0)==-1) | 501 | if (gzipPid && waitpid(gzipPid, NULL, 0)==-1) |
502 | bb_error_msg("cannot wait"); | 502 | bb_error_msg("cannot wait"); |
@@ -540,7 +540,7 @@ static llist_t *append_file_list_to_list(llist_t *list) | |||
540 | #ifdef CONFIG_FEATURE_TAR_COMPRESS | 540 | #ifdef CONFIG_FEATURE_TAR_COMPRESS |
541 | static char get_header_tar_Z(archive_handle_t *archive_handle) | 541 | static char get_header_tar_Z(archive_handle_t *archive_handle) |
542 | { | 542 | { |
543 | /* Cant lseek over pipe's */ | 543 | /* Can't lseek over pipes */ |
544 | archive_handle->seek = seek_by_read; | 544 | archive_handle->seek = seek_by_read; |
545 | 545 | ||
546 | /* do the decompression, and cleanup */ | 546 | /* do the decompression, and cleanup */ |
@@ -556,7 +556,7 @@ static char get_header_tar_Z(archive_handle_t *archive_handle) | |||
556 | /* nothing */; | 556 | /* nothing */; |
557 | 557 | ||
558 | /* Can only do one file at a time */ | 558 | /* Can only do one file at a time */ |
559 | return(EXIT_FAILURE); | 559 | return EXIT_FAILURE; |
560 | } | 560 | } |
561 | #else | 561 | #else |
562 | #define get_header_tar_Z 0 | 562 | #define get_header_tar_Z 0 |