[git commit] ash: add a comment about VEXPORT

Denys Vlasenko vda.linux at googlemail.com
Sat Jul 7 19:40:35 UTC 2012


commit: http://git.busybox.net/busybox/commit/?id=566a313a7f531d7df28f8ae01d19a4b28134b2e3
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 shell/ash.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/shell/ash.c b/shell/ash.c
index e23b203..b20c32b 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -1900,6 +1900,10 @@ static const struct {
 	const char *var_text;
 	void (*var_func)(const char *) FAST_FUNC;
 } varinit_data[] = {
+	/*
+	 * Note: VEXPORT would not work correctly here for NOFORK applets:
+	 * some environment strings may be constant.
+	 */
 	{ VSTRFIXED|VTEXTFIXED       , defifsvar   , NULL            },
 #if ENABLE_ASH_MAIL
 	{ VSTRFIXED|VTEXTFIXED|VUNSET, "MAIL"      , changemail      },


More information about the busybox-cvs mailing list