summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/c/urweb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/urweb.c b/src/c/urweb.c
index 5ac5aa55..ffcc0146 100644
--- a/src/c/urweb.c
+++ b/src/c/urweb.c
@@ -3672,7 +3672,7 @@ uw_Basis_string uw_Basis_getenv(uw_context ctx, uw_Basis_string name) {
if (ctx->get_env)
return ctx->get_env(ctx->get_env_data, name);
else
- return NULL;
+ return getenv(name);
}
uw_Basis_string uw_unnull(uw_Basis_string s) {