aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-11-03 14:05:15 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-11-03 14:05:15 +0000
commit237ae42fc96ede945d28d9054f045b73e419d089 (patch)
tree3fb6a9c10150303aca3c218b47aaf327a186382a /libbb
parent2fc54a9258c3aa5dad2ce9807ba85cf29af2668e (diff)
downloadbusybox-w32-237ae42fc96ede945d28d9054f045b73e419d089.tar.gz
busybox-w32-237ae42fc96ede945d28d9054f045b73e419d089.tar.bz2
busybox-w32-237ae42fc96ede945d28d9054f045b73e419d089.zip
Abstract read and seek in unarchiving code, convert bunzip to file descriptors, support tar -j
Diffstat (limited to 'libbb')
-rw-r--r--libbb/xfuncs.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c
index 2249e263a..820a0d7cc 100644
--- a/libbb/xfuncs.c
+++ b/libbb/xfuncs.c
@@ -92,7 +92,7 @@ extern int xopen(const char *pathname, int flags)
92{ 92{
93 int ret; 93 int ret;
94 94
95 ret = open(pathname, flags); 95 ret = open(pathname, flags, 0777);
96 if (ret == -1) { 96 if (ret == -1) {
97 perror_msg_and_die("%s", pathname); 97 perror_msg_and_die("%s", pathname);
98 } 98 }
@@ -121,17 +121,6 @@ extern void xread_all(int fd, void *buf, size_t count)
121 return; 121 return;
122} 122}
123 123
124extern ssize_t xread_all_eof(int fd, void *buf, size_t count)
125{
126 ssize_t size;
127
128 size = xread(fd, buf, count);
129 if ((size != 0) && (size != count)) {
130 error_msg_and_die("Short read");
131 }
132 return(size);
133}
134
135extern unsigned char xread_char(int fd) 124extern unsigned char xread_char(int fd)
136{ 125{
137 char tmp; 126 char tmp;