diff options
author | Gisle Aas <gisle@aas.no> | 2009-01-29 16:21:48 +0100 |
---|---|---|
committer | Gisle Aas <gisle@aas.no> | 2009-01-29 16:21:48 +0100 |
commit | 06ba78de6df7f363272e855cc63710a634eb6100 (patch) | |
tree | f32b0bd459327c3f26a6ac7efc3ef89401acc974 /pp_sys.c | |
parent | 8ed969f8dc7e9744ad177a35c99ce43a1bcb63a6 (diff) | |
download | perl-06ba78de6df7f363272e855cc63710a634eb6100.tar.gz |
do_exec() is a mathom, so call its replacement directly
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |