Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/xfuncs.c')
-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)
{
int ret;
- ret = open(pathname, flags);
+ ret = open(pathname, flags, 0777);
if (ret == -1) {
perror_msg_and_die("%s", pathname);
}
@@ -121,17 +121,6 @@ extern void xread_all(int fd, void *buf, size_t count)
return;
}
-extern ssize_t xread_all_eof(int fd, void *buf, size_t count)
-{
- ssize_t size;
-
- size = xread(fd, buf, count);
- if ((size != 0) && (size != count)) {
- error_msg_and_die("Short read");
- }
- return(size);
-}
-
extern unsigned char xread_char(int fd)
{
char tmp;