Change 20595 by [EMAIL PROTECTED] on 2003/08/10 17:33:12
One more PL_csighandlerp.
Affected files ...
... //depot/perl/ext/POSIX/POSIX.xs#117 edit
Differences ...
==== //depot/perl/ext/POSIX/POSIX.xs#117 (text) ====
Index: perl/ext/POSIX/POSIX.xs
--- perl/ext/POSIX/POSIX.xs#116~20565~ Fri Aug 8 11:59:40 2003
+++ perl/ext/POSIX/POSIX.xs Sun Aug 10 10:33:12 2003
@@ -1302,7 +1302,7 @@
(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.) */
End of Patch.