diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-01-14 01:34:48 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-01-14 01:34:48 +0100 |
commit | 6967578728a3eef43b7b2be4080dafc1b87f528d (patch) | |
tree | 76b79c4c81ce8e5ad4e57df5119efecef810e673 /coreutils/ls.c | |
parent | 52185155088d0910d29c7f4fdf5cb3eecaac8965 (diff) | |
download | busybox-w32-6967578728a3eef43b7b2be4080dafc1b87f528d.tar.gz busybox-w32-6967578728a3eef43b7b2be4080dafc1b87f528d.tar.bz2 busybox-w32-6967578728a3eef43b7b2be4080dafc1b87f528d.zip |
whitespace fixes. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index d5b25ee70..166473d4d 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -260,7 +260,7 @@ enum { | |||
260 | 260 | ||
261 | /* TODO: simple toggles may be stored as OPT_xxx bits instead */ | 261 | /* TODO: simple toggles may be stored as OPT_xxx bits instead */ |
262 | static const uint32_t opt_flags[] = { | 262 | static const uint32_t opt_flags[] = { |
263 | STYLE_COLUMNAR, /* C */ | 263 | STYLE_COLUMNAR, /* C */ |
264 | DISP_HIDDEN | DISP_DOT, /* a */ | 264 | DISP_HIDDEN | DISP_DOT, /* a */ |
265 | DISP_NOLIST, /* d */ | 265 | DISP_NOLIST, /* d */ |
266 | LIST_INO, /* i */ | 266 | LIST_INO, /* i */ |
@@ -720,7 +720,7 @@ static struct dnode *my_stat(const char *fullname, const char *name, int force_f | |||
720 | if ((option_mask32 & OPT_L) || force_follow) { | 720 | if ((option_mask32 & OPT_L) || force_follow) { |
721 | #if ENABLE_SELINUX | 721 | #if ENABLE_SELINUX |
722 | if (is_selinux_enabled()) { | 722 | if (is_selinux_enabled()) { |
723 | getfilecon(fullname, &cur->sid); | 723 | getfilecon(fullname, &cur->sid); |
724 | } | 724 | } |
725 | #endif | 725 | #endif |
726 | if (stat(fullname, &statbuf)) { | 726 | if (stat(fullname, &statbuf)) { |