about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/env.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/env.h b/src/include/env.h
index 7007f8cd..0503b413 100644
--- a/src/include/env.h
+++ b/src/include/env.h
@@ -5,8 +5,7 @@
 #include <unistd.h>
 
 #define BOX64ENV(name)            (box64env.name)
-#define BOX64DRENV(name) \
-    ((GetCurEnvByAddr(dyn->start) && cur_box64env->is_##name##_overridden) ? cur_box64env->name : box64env.name)
+#define BOX64DRENV(name)          (GetCurEnvByAddr(dyn->start)->name)
 #define SET_BOX64ENV(name, value)            \
     {                                        \
         box64env.name = (value);             \