diff options
author | Ron Yorston <rmy@pobox.com> | 2018-02-13 09:44:44 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2018-02-13 09:44:44 +0000 |
commit | dc19a361bd6c6df30338371532691bbc7f7126bb (patch) | |
tree | 1fb2cd646d54b5f8e425c4f11f3e09fc21d1966b /coreutils/stat.c | |
parent | 096aee2bb468d1ab044de36e176ed1f6c7e3674d (diff) | |
parent | 3459024bf404af814cacfe90a0deb719e282ae62 (diff) | |
download | busybox-w32-dc19a361bd6c6df30338371532691bbc7f7126bb.tar.gz busybox-w32-dc19a361bd6c6df30338371532691bbc7f7126bb.tar.bz2 busybox-w32-dc19a361bd6c6df30338371532691bbc7f7126bb.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'coreutils/stat.c')
-rw-r--r-- | coreutils/stat.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/coreutils/stat.c b/coreutils/stat.c index 177ced2f9..41f6d103c 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c | |||
@@ -758,10 +758,13 @@ int stat_main(int argc UNUSED_PARAM, char **argv) | |||
758 | IF_FEATURE_STAT_FORMAT(char *format = NULL;) | 758 | IF_FEATURE_STAT_FORMAT(char *format = NULL;) |
759 | int i; | 759 | int i; |
760 | int ok; | 760 | int ok; |
761 | unsigned opts; | ||
762 | statfunc_ptr statfunc = do_stat; | 761 | statfunc_ptr statfunc = do_stat; |
762 | #if ENABLE_FEATURE_STAT_FILESYSTEM || ENABLE_SELINUX | ||
763 | unsigned opts; | ||
763 | 764 | ||
764 | opts = getopt32(argv, "^" | 765 | opts = |
766 | #endif | ||
767 | getopt32(argv, "^" | ||
765 | "tL" | 768 | "tL" |
766 | IF_FEATURE_STAT_FILESYSTEM("f") | 769 | IF_FEATURE_STAT_FILESYSTEM("f") |
767 | IF_SELINUX("Z") | 770 | IF_SELINUX("Z") |