diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-07 18:18:09 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-07 18:18:09 +0200 |
commit | 248a67fb75a0d2c98f4f9935b7bb9e11382b2c78 (patch) | |
tree | eea88807a0b5d936d158ef7a62dfb051df174e96 /coreutils | |
parent | 316d38e25883c68e51533029dbab059ae0731de8 (diff) | |
download | busybox-w32-248a67fb75a0d2c98f4f9935b7bb9e11382b2c78.tar.gz busybox-w32-248a67fb75a0d2c98f4f9935b7bb9e11382b2c78.tar.bz2 busybox-w32-248a67fb75a0d2c98f4f9935b7bb9e11382b2c78.zip |
free,stat: make NOEXEC
pkill/pgrep/pidof uncovered another quirk: what about noexec's _process names_?
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/stat.c b/coreutils/stat.c index 3b85808b5..4e926a908 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c | |||
@@ -36,7 +36,7 @@ | |||
36 | //config: Without this, stat will not support the '-f' option to display | 36 | //config: Without this, stat will not support the '-f' option to display |
37 | //config: information about filesystem status. | 37 | //config: information about filesystem status. |
38 | 38 | ||
39 | //applet:IF_STAT(APPLET(stat, BB_DIR_BIN, BB_SUID_DROP)) | 39 | //applet:IF_STAT(APPLET_NOEXEC(stat, stat, BB_DIR_BIN, BB_SUID_DROP, stat)) |
40 | 40 | ||
41 | //kbuild:lib-$(CONFIG_STAT) += stat.o | 41 | //kbuild:lib-$(CONFIG_STAT) += stat.o |
42 | 42 | ||