aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 518615316..fa4410749 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -13317,6 +13317,24 @@ name(type *vp) \
13317 return start; \ 13317 return start; \
13318} 13318}
13319 13319
13320/*
13321 * struct var
13322 */
13323SLIST_SIZE_BEGIN(var_size,struct var)
13324funcstringsize += strlen(p->text) + 1;
13325nodeptrsize++; /* p->text */
13326SLIST_SIZE_END()
13327
13328SLIST_COPY_BEGIN(var_copy,struct var)
13329(*vpp)->text = nodeckstrdup(vp->text);
13330(*vpp)->flags = vp->flags;
13331/*
13332 * The only place that can set struct var#func is varinit[],
13333 * which will be fixed by forkshell_init()
13334 */
13335(*vpp)->func = NULL;
13336SAVE_PTR((*vpp)->text);
13337SLIST_COPY_END()
13320/*- 13338/*-
13321 * Copyright (c) 1989, 1991, 1993, 1994 13339 * Copyright (c) 1989, 1991, 1993, 1994
13322 * The Regents of the University of California. All rights reserved. 13340 * The Regents of the University of California. All rights reserved.