summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2007-01-13 18:22:46 +0100
committerJim Meyering <jim@meyering.net>2007-03-29 21:37:05 +0200
commit1411a53dc12fe39c8217974bd36a2929952bacad (patch)
tree702a6317310a5254ae6b128b121a22a3f28be9f6 /src
parente80cace87488932ce99468428b1db11e3df0668e (diff)
downloadcoreutils-1411a53dc12fe39c8217974bd36a2929952bacad.tar.xz
* src/ls.c (gobble_file): Don't call getfilecon unless print_scontext.
Upon failed getfilecon, accept not just ENOTSUP, but also ENODATA.
Diffstat (limited to 'src')
-rw-r--r--src/ls.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ls.c b/src/ls.c
index f8727a246..b33146ce4 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -2596,6 +2596,8 @@ gobble_file (char const *name, enum filetype type, ino_t inode,
)))))
{
+ /* FIXME-c99: move this decl "down", once ls.c stabilizes. */
+ bool file_has_security_context = false;
/* Absolute name of this file. */
char *absolute_name;
bool do_deref;
@@ -2645,8 +2647,7 @@ gobble_file (char const *name, enum filetype type, ino_t inode,
break;
}
- bool file_has_security_context = false;
- if (err == 0 && (format == long_format || print_scontext))
+ if (err == 0 && print_scontext)
{
int attr_len = (do_deref
? getfilecon (absolute_name, &f->scontext)
@@ -2658,7 +2659,7 @@ gobble_file (char const *name, enum filetype type, ino_t inode,
ls fail just because the file (even a command line argument)
isn't on the right type of file system. I.e., a getfilecon
failure isn't in the same class as a stat failure. */
- if (err && errno == ENOTSUP)
+ if (err && (errno == ENOTSUP || errno == ENODATA))
err = 0;
}