summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorGisle Aas <gisle@aas.no>2009-01-29 16:21:48 +0100
committerGisle Aas <gisle@aas.no>2009-01-29 16:21:48 +0100
commit06ba78de6df7f363272e855cc63710a634eb6100 (patch)
treef32b0bd459327c3f26a6ac7efc3ef89401acc974 /pp_sys.c
parent8ed969f8dc7e9744ad177a35c99ce43a1bcb63a6 (diff)
downloadperl-06ba78de6df7f363272e855cc63710a634eb6100.tar.gz
do_exec() is a mathom, so call its replacement directly
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_sys.c b/pp_sys.c
index cfbf9182ea..841392b505 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -4260,7 +4260,7 @@ PP(pp_exec)
(void) do_spawn(SvPVx_nolen(sv_mortalcopy(*SP)));
value = 0;
# else
- value = (I32)do_exec(SvPVx_nolen(sv_mortalcopy(*SP)));
+ value = (I32)do_exec3(SvPVx_nolen(sv_mortalcopy(*SP)), 0, 0);
# endif
#endif
}