diff options
author | Rob Landley <rob@landley.net> | 2006-03-13 15:45:16 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-13 15:45:16 +0000 |
commit | c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c (patch) | |
tree | e44405a7e5212758d20a9595cbb0a82609d4a347 /coreutils/ls.c | |
parent | 965030e35aed6a8b9c09267baba4c2342d5223d6 (diff) | |
download | busybox-w32-c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c.tar.gz busybox-w32-c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c.tar.bz2 busybox-w32-c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c.zip |
Patch from Denis Vlasenko to add xstat() and use it.
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index a575a02cb..964e7c964 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -230,7 +230,7 @@ static struct dnode *my_stat(char *fullname, char *name) | |||
230 | rc = getfilecon(fullname,&sid); | 230 | rc = getfilecon(fullname,&sid); |
231 | } | 231 | } |
232 | #endif | 232 | #endif |
233 | rc = stat(fullname, &dstat); | 233 | rc = stat(fullname, &dstat); |
234 | if(rc) { | 234 | if(rc) { |
235 | bb_perror_msg("%s", fullname); | 235 | bb_perror_msg("%s", fullname); |
236 | status = EXIT_FAILURE; | 236 | status = EXIT_FAILURE; |