diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-19 00:29:22 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-19 00:29:22 +0000 |
commit | 520d2dc5f69862e189366608eb2c4531b94134bf (patch) | |
tree | ec8143ae80ee51c6b1df792e3d7ed66014fdd5ab /editors/Config.in | |
parent | 421693af7d4800cd3f046e72b3ab6ff99e7d0224 (diff) | |
download | busybox-w32-520d2dc5f69862e189366608eb2c4531b94134bf.tar.gz busybox-w32-520d2dc5f69862e189366608eb2c4531b94134bf.tar.bz2 busybox-w32-520d2dc5f69862e189366608eb2c4531b94134bf.zip |
Add option to disable command execution from vi & awk
git-svn-id: svn://busybox.net/trunk/busybox@17001 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'editors/Config.in')
-rw-r--r-- | editors/Config.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/editors/Config.in b/editors/Config.in index 4ba009019..fd840ae9a 100644 --- a/editors/Config.in +++ b/editors/Config.in | |||
@@ -127,5 +127,12 @@ config FEATURE_VI_OPTIMIZE_CURSOR | |||
127 | This will make the cursor movement faster, but requires more memory | 127 | This will make the cursor movement faster, but requires more memory |
128 | and it makes the applet a tiny bit larger. | 128 | and it makes the applet a tiny bit larger. |
129 | 129 | ||
130 | endmenu | 130 | config FEATURE_ALLOW_EXEC |
131 | bool "Allow vi and awk to execute shell commands" | ||
132 | default y | ||
133 | depends on VI || AWK | ||
134 | help | ||
135 | Enables vi and awk features which allows user to execute | ||
136 | shell commands (using system() C call). | ||
131 | 137 | ||
138 | endmenu | ||