summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-05-05 06:38:59 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-05-05 06:38:59 -0700
commitb897159ece19148faf414aec5fb6b7baac0fa301 (patch)
treed22a8d1dcc26deb7f33424fe6875079c6bc28627 /sysif.c
parent7de3d60457b9746b31781522be6ea9e0b1438a86 (diff)
downloadtxr-b897159ece19148faf414aec5fb6b7baac0fa301.tar.gz
txr-b897159ece19148faf414aec5fb6b7baac0fa301.tar.bz2
txr-b897159ece19148faf414aec5fb6b7baac0fa301.zip
New --reexec option.
This helps with setuid hash bang scripting on Mac OS, and other plaforms where the interpreter executed out of a hash bang script runs with orinary privilege, even if marked setuid. * sysif.c (exec_wrap): Static function turns extern. * sysif.h (exec-wrap): Declared. * txr.1: Documented --reexec. Added notes about setuid under Hash Bang Support. * txr.c (help): List --reexec option. (txr_main): Implement --reexec option.
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 d7272dcf..e9c422ec 100644
--- a/sysif.c
+++ b/sysif.c
@@ -524,7 +524,7 @@ static val dup_wrap(val old, val neu)
return num(dup2(c_num(old), c_num(neu)));
}
-static val exec_wrap(val file, val args_opt)
+val exec_wrap(val file, val args_opt)
{
val args = default_bool_arg(args_opt);
int nargs = c_num(length(args)) + 1;