diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-14 02:23:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-14 02:23:43 +0000 |
commit | ea62077b850076c4d7dc3cf78ebd1888928c6ddf (patch) | |
tree | 37b7584ae40b99edb5583fbc4392b62ffdadf278 /archival/tar.c | |
parent | 88ca06769028e442bf873b270c176ca0e9f021f8 (diff) | |
download | busybox-w32-ea62077b850076c4d7dc3cf78ebd1888928c6ddf.tar.gz busybox-w32-ea62077b850076c4d7dc3cf78ebd1888928c6ddf.tar.bz2 busybox-w32-ea62077b850076c4d7dc3cf78ebd1888928c6ddf.zip |
add open_read_close() and similar stuff
Diffstat (limited to 'archival/tar.c')
-rw-r--r-- | archival/tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/tar.c b/archival/tar.c index 5935ccaa3..2c4280cc4 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -457,7 +457,7 @@ static int writeTarFile(const int tar_fd, const int verboseFlag, | |||
457 | 457 | ||
458 | if (n == 0 && vfork_exec_errno != 0) { | 458 | if (n == 0 && vfork_exec_errno != 0) { |
459 | errno = vfork_exec_errno; | 459 | errno = vfork_exec_errno; |
460 | bb_perror_msg_and_die("Could not exec %s", zip_exec); | 460 | bb_perror_msg_and_die("cannot exec %s", zip_exec); |
461 | } else if ((n < 0) && (errno == EAGAIN || errno == EINTR)) | 461 | } else if ((n < 0) && (errno == EAGAIN || errno == EINTR)) |
462 | continue; /* try it again */ | 462 | continue; /* try it again */ |
463 | break; | 463 | break; |