summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-03-08 06:19:19 -0800
committerKaz Kylheku <kaz@kylheku.com>2016-03-08 06:19:19 -0800
commit43675badfd700d12b2d95bb5117c5672d2722f9f (patch)
tree7d3be2de4b12d2aa132b92b8e15df2d7e6c22dd4 /sysif.c
parent685786b3715e984fb37929dfac9891924f60d811 (diff)
downloadtxr-43675badfd700d12b2d95bb5117c5672d2722f9f.tar.gz
txr-43675badfd700d12b2d95bb5117c5672d2722f9f.tar.bz2
txr-43675badfd700d12b2d95bb5117c5672d2722f9f.zip
Bugfix in setenv: default argument handling.
* sysif.c (setenv_wrap): We must use default_arg_strict, not default_arg, because default_arg treats a nil value as missing. We do not want to replace an explicit nil with the default t.
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysif.c b/sysif.c
index d0a06ca0..1ad5db35 100644
--- a/sysif.c
+++ b/sysif.c
@@ -704,7 +704,7 @@ static val setenv_wrap(val name, val value, val overwrite)
{
char *nameu8 = utf8_dup_to(c_str(name));
char *valu8 = value ? utf8_dup_to(c_str(value)) : 0;
- int ovw = default_arg(overwrite, t) != nil;
+ int ovw = default_arg_strict(overwrite, t) != nil;
if (valu8)
setenv(nameu8, valu8, ovw);
else if (ovw)