summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c4
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;