diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/POSIX/POSIX.xs | 2 |
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.) */ |