From: Gisle Aas Date: Thu, 29 Jan 2009 15:21:48 +0000 (+0100) Subject: do_exec() is a mathom, so call its replacement directly X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=06ba78de6df7f363272e855cc63710a634eb6100;p=p5sagit%2Fp5-mst-13.2.git do_exec() is a mathom, so call its replacement directly --- diff --git a/pp_sys.c b/pp_sys.c index cfbf918..841392b 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 }