diff options
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 a575a02..964e7c9 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -230,7 +230,7 @@ static struct dnode *my_stat(char *fullname, char *name) rc = getfilecon(fullname,&sid); } #endif - rc = stat(fullname, &dstat); + rc = stat(fullname, &dstat); if(rc) { bb_perror_msg("%s", fullname); status = EXIT_FAILURE; |