summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-08-10 17:33:12 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-08-10 17:33:12 +0000
commitb4ed63f0a0813bfb6f592229a3dc3cac2ade92c3 (patch)
treebc58e747b590a817cb6d2c3da954ec2a001d3f70 /ext
parente5a7b00343749c7d105ae604c729e7f14b9e23db (diff)
downloadperl-b4ed63f0a0813bfb6f592229a3dc3cac2ade92c3.tar.gz
One more PL_csighandlerp.
p4raw-id: //depot/perl@20595
Diffstat (limited to 'ext')
-rw-r--r--ext/POSIX/POSIX.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs
index 10ba175e18..d054ce98e1 100644
--- a/ext/POSIX/POSIX.xs
+++ b/ext/POSIX/POSIX.xs
@@ -1302,7 +1302,7 @@ sigaction(sig, optaction, oldaction = 0)
(BTW, "csighandler" is very different from "sighandler".) */
svp = hv_fetch(action, "SAFE", 4, FALSE);
act.sa_handler = (*svp && SvTRUE(*svp))
- ? Perl_csighandler : PL_sighandlerp;
+ ? PL_csighandlerp : PL_sighandlerp;
/* Vector new Perl handler through %SIG.
(The core signal handlers read %SIG to dispatch.) */