diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-29 21:30:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-29 21:30:43 +0000 |
commit | a959588b80529ef5e02048ed71f3c7bf9a117217 (patch) | |
tree | 331b3963cb98fded02b753ca33bfa37cb48a97c6 /archival/gunzip.c | |
parent | 6c30db8bd37da1466dc71bf3c8c20851d8f46c43 (diff) | |
download | busybox-w32-a959588b80529ef5e02048ed71f3c7bf9a117217.tar.gz busybox-w32-a959588b80529ef5e02048ed71f3c7bf9a117217.tar.bz2 busybox-w32-a959588b80529ef5e02048ed71f3c7bf9a117217.zip |
Yet another silly little byte saving. couldn't -> cannot
Diffstat (limited to 'archival/gunzip.c')
-rw-r--r-- | archival/gunzip.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c index a7f5ce481..9a68e62e4 100644 --- a/archival/gunzip.c +++ b/archival/gunzip.c | |||
@@ -119,13 +119,13 @@ int gunzip_main(int argc, char **argv) | |||
119 | check_header_gzip(src_fd); | 119 | check_header_gzip(src_fd); |
120 | status = inflate_gunzip(src_fd, dst_fd); | 120 | status = inflate_gunzip(src_fd, dst_fd); |
121 | if (status != 0) { | 121 | if (status != 0) { |
122 | bb_error_msg_and_die("Error inflating"); | 122 | bb_error_msg_and_die("error inflating"); |
123 | } | 123 | } |
124 | } else { | 124 | } else { |
125 | bb_error_msg_and_die("Invalid magic"); | 125 | bb_error_msg_and_die("invalid magic"); |
126 | } | 126 | } |
127 | } else { | 127 | } else { |
128 | bb_error_msg_and_die("Invalid magic"); | 128 | bb_error_msg_and_die("invalid magic"); |
129 | } | 129 | } |
130 | 130 | ||
131 | if ((status != EXIT_SUCCESS) && (new_path)) { | 131 | if ((status != EXIT_SUCCESS) && (new_path)) { |
@@ -142,7 +142,7 @@ int gunzip_main(int argc, char **argv) | |||
142 | 142 | ||
143 | /* delete_path will be NULL if in test mode or from stdin */ | 143 | /* delete_path will be NULL if in test mode or from stdin */ |
144 | if (delete_path && (unlink(delete_path) == -1)) { | 144 | if (delete_path && (unlink(delete_path) == -1)) { |
145 | bb_error_msg_and_die("Couldn't remove %s", delete_path); | 145 | bb_error_msg_and_die("cannot remove %s", delete_path); |
146 | } | 146 | } |
147 | 147 | ||
148 | free(new_path); | 148 | free(new_path); |