diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-06-26 18:09:22 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-06-26 18:09:22 +0200 |
commit | b2b14cbd4c20d4dda1599fc95680b0583533ab48 (patch) | |
tree | cbbf02df5460ed498a09b1547569433fe96140a5 /shell | |
parent | 762440b20e3b75ab30ddca55cfdc657397bb38dc (diff) | |
download | busybox-b2b14cbd4c20d4dda1599fc95680b0583533ab48.tar.gz |
hush: fix compile problem found by randomconfig
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/hush.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index 5d907e200..c3cb9382a 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -2373,7 +2373,8 @@ static int unset_local_var(const char *name) } #endif -#if BASH_HOSTNAME_VAR || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_READ || ENABLE_HUSH_GETOPTS +#if BASH_HOSTNAME_VAR || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_READ || ENABLE_HUSH_GETOPTS \ + || (ENABLE_HUSH_INTERACTIVE && ENABLE_FEATURE_EDITING_FANCY_PROMPT) static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val) { char *var = xasprintf("%s=%s", name, val); |