diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-09-28 17:41:56 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-09-28 17:41:56 +0200 |
commit | 5b026d1ecf2df93d31248153a7f5d0c45a5d12fa (patch) | |
tree | 1c079676049ef796ed8de808c2c118037dc39906 /shell/ash.c | |
parent | 03ed86b39e887b2f4031961673fddd88fdeb493e (diff) |
ash: fix compile breakage in !ENABLE_ASH_ALIAS config
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index 4bc4f55d0..4bf0615ea 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -10941,14 +10941,14 @@ static void freestrings(struct strpush *sp) INT_OFF; do { struct strpush *psp; - +#if ENABLE_ASH_ALIAS if (sp->ap) { sp->ap->flag &= ~ALIASINUSE; if (sp->ap->flag & ALIASDEAD) { unalias(sp->ap->name); } } - +#endif psp = sp; sp = sp->spfree; |