diff options
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index e23b2034d..b20c32b89 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -1900,6 +1900,10 @@ static const struct { | |||
1900 | const char *var_text; | 1900 | const char *var_text; |
1901 | void (*var_func)(const char *) FAST_FUNC; | 1901 | void (*var_func)(const char *) FAST_FUNC; |
1902 | } varinit_data[] = { | 1902 | } varinit_data[] = { |
1903 | /* | ||
1904 | * Note: VEXPORT would not work correctly here for NOFORK applets: | ||
1905 | * some environment strings may be constant. | ||
1906 | */ | ||
1903 | { VSTRFIXED|VTEXTFIXED , defifsvar , NULL }, | 1907 | { VSTRFIXED|VTEXTFIXED , defifsvar , NULL }, |
1904 | #if ENABLE_ASH_MAIL | 1908 | #if ENABLE_ASH_MAIL |
1905 | { VSTRFIXED|VTEXTFIXED|VUNSET, "MAIL" , changemail }, | 1909 | { VSTRFIXED|VTEXTFIXED|VUNSET, "MAIL" , changemail }, |