diff options
author | Ron Yorston <rmy@pobox.com> | 2012-10-10 12:56:24 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2012-10-10 12:56:24 +0100 |
commit | 981a6fcd1323a77d5829c7d574bb40fd1b96dc4d (patch) | |
tree | a1e3aadf4de65d7a525c7dd6172546ff577777d5 /coreutils | |
parent | 19436cc0ee509a5e356c04f0026919abd417bec4 (diff) | |
parent | eab343e7e1e5331df833aa69f14584e4a6c738f1 (diff) | |
download | busybox-w32-981a6fcd1323a77d5829c7d574bb40fd1b96dc4d.tar.gz busybox-w32-981a6fcd1323a77d5829c7d574bb40fd1b96dc4d.tar.bz2 busybox-w32-981a6fcd1323a77d5829c7d574bb40fd1b96dc4d.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/stat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/stat.c b/coreutils/stat.c index 4959de40e..e6b0e95de 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c | |||
@@ -459,7 +459,7 @@ static bool do_statfs(const char *filename, const char *format) | |||
459 | : getfilecon(filename, &scontext) | 459 | : getfilecon(filename, &scontext) |
460 | ) < 0 | 460 | ) < 0 |
461 | ) { | 461 | ) { |
462 | bb_perror_msg(filename); | 462 | bb_simple_perror_msg(filename); |
463 | return 0; | 463 | return 0; |
464 | } | 464 | } |
465 | } | 465 | } |
@@ -573,7 +573,7 @@ static bool do_stat(const char *filename, const char *format) | |||
573 | : getfilecon(filename, &scontext) | 573 | : getfilecon(filename, &scontext) |
574 | ) < 0 | 574 | ) < 0 |
575 | ) { | 575 | ) { |
576 | bb_perror_msg(filename); | 576 | bb_simple_perror_msg(filename); |
577 | return 0; | 577 | return 0; |
578 | } | 578 | } |
579 | } | 579 | } |