summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenis Vlasenko2007-06-30 15:06:45 +0000
committerDenis Vlasenko2007-06-30 15:06:45 +0000
commit32a66a8e93626df3e1fa9dcee0a6046033c4c692 (patch)
tree1fffc5013ec5bd9a69c45640c7cdba6c9459d705 /shell
parent4bbeebd6668338ddf821e48010e79e3bd2eed4a7 (diff)
downloadbusybox-32a66a8e93626df3e1fa9dcee0a6046033c4c692.zip
busybox-32a66a8e93626df3e1fa9dcee0a6046033c4c692.tar.gz
wget: fix buffer overflow in HTTP auth
Diffstat (limited to 'shell')
-rw-r--r--shell/Config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/Config.in b/shell/Config.in
index 9047901..0689b4e 100644
--- a/shell/Config.in
+++ b/shell/Config.in
@@ -179,6 +179,7 @@ config HUSH
config HUSH_HELP
bool "help builtin"
default n
+ depends on HUSH
help
Enable help builtin in hush. Code size + ~1 kbyte.
@@ -206,18 +207,21 @@ config HUSH_JOB
config HUSH_TICK
bool "Process substitution"
default n
+ depends on HUSH
help
Enable process substitution `command` and $(command) in hush.
config HUSH_IF
bool "Support if/then/elif/else/fi"
default n
+ depends on HUSH
help
Enable if/then/elif/else/fi in hush.
config HUSH_LOOPS
bool "Support for, while and until loops"
default n
+ depends on HUSH
help
Enable for, while and until loops in hush.