aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/ed.c10
-rw-r--r--modutils/modutils-24.c2
2 files changed, 6 insertions, 6 deletions
diff --git a/editors/ed.c b/editors/ed.c
index 516b8d78d..859668406 100644
--- a/editors/ed.c
+++ b/editors/ed.c
@@ -671,7 +671,7 @@ static int readLines(const char *file, int num)
fd = open(file, 0);
if (fd < 0) {
- perror(file);
+ bb_simple_perror_msg(file);
return FALSE;
}
@@ -721,7 +721,7 @@ static int readLines(const char *file, int num)
} while (cc > 0);
if (cc < 0) {
- perror(file);
+ bb_simple_perror_msg(file);
close(fd);
return FALSE;
}
@@ -761,7 +761,7 @@ static int writeLines(const char *file, int num1, int num2)
fd = creat(file, 0666);
if (fd < 0) {
- perror(file);
+ bb_simple_perror_msg(file);
return FALSE;
}
@@ -776,7 +776,7 @@ static int writeLines(const char *file, int num1, int num2)
while (num1++ <= num2) {
if (full_write(fd, lp->data, lp->len) != lp->len) {
- perror(file);
+ bb_simple_perror_msg(file);
close(fd);
return FALSE;
}
@@ -786,7 +786,7 @@ static int writeLines(const char *file, int num1, int num2)
}
if (close(fd) < 0) {
- perror(file);
+ bb_simple_perror_msg(file);
return FALSE;
}
diff --git a/modutils/modutils-24.c b/modutils/modutils-24.c
index 7228954d6..2b34954c0 100644
--- a/modutils/modutils-24.c
+++ b/modutils/modutils-24.c
@@ -3561,7 +3561,7 @@ static void check_tainted_module(struct obj_file *f, const char *m_name)
else if (errno == EACCES)
kernel_has_tainted = 1;
else {
- perror(TAINT_FILENAME);
+ bb_simple_perror_msg(TAINT_FILENAME);
kernel_has_tainted = 0;
}
}