aboutsummaryrefslogtreecommitdiff
path: root/coreutils/stat.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-02-13 09:44:44 +0000
committerRon Yorston <rmy@pobox.com>2018-02-13 09:44:44 +0000
commitdc19a361bd6c6df30338371532691bbc7f7126bb (patch)
tree1fb2cd646d54b5f8e425c4f11f3e09fc21d1966b /coreutils/stat.c
parent096aee2bb468d1ab044de36e176ed1f6c7e3674d (diff)
parent3459024bf404af814cacfe90a0deb719e282ae62 (diff)
downloadbusybox-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.c7
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")