diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-24 22:52:21 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-24 22:52:21 +0100 |
commit | 6b01b71e8370c58787318d5fca06db2074f95c55 (patch) | |
tree | 1f2fff69f5004a6fe66872434e1a25827588f1a7 /shell | |
parent | 9f93d621925966c22ee51fdcb5def8e131596f9b (diff) | |
download | busybox-6b01b71e8370c58787318d5fca06db2074f95c55.tar.gz |
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/hush.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index 810009ae8..9a9b5bb91 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -1516,13 +1516,13 @@ static char* FAST_FUNC endofname(const char *name) } return p; } +#endif static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val) { char *var = xasprintf("%s=%s", name, val); set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0); } -#endif /* |