aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2012-09-27 15:35:10 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2012-09-27 15:35:10 +0200
commit9371043698933452bb69566f279a6e40af961c8c (patch)
tree48297fb38a1e17cd91445aa058d0a4bdce111ce8 /coreutils
parent225cc1327a9a3786d0c5317ea1a8342f8c04f0d8 (diff)
downloadbusybox-9371043698933452bb69566f279a6e40af961c8c.tar.gz
fix unsafe bb_perror_msg(filename) calls
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/stat.c b/coreutils/stat.c
index 3fb212f0f..e38c8f6b0 100644
--- a/coreutils/stat.c
+++ b/coreutils/stat.c
@@ -442,7 +442,7 @@ static bool do_statfs(const char *filename, const char *format)
: getfilecon(filename, &scontext)
) < 0
) {
- bb_perror_msg(filename);
+ bb_simple_perror_msg(filename);
return 0;
}
}
@@ -555,7 +555,7 @@ static bool do_stat(const char *filename, const char *format)
: getfilecon(filename, &scontext)
) < 0
) {
- bb_perror_msg(filename);
+ bb_simple_perror_msg(filename);
return 0;
}
}