From 4ec43091e8e6657cb260b5e563df30aaa154effe Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Fri, 30 Oct 1998 09:12:59 +0000 Subject: [PATCH] #2133 fallout. p4raw-id: //depot/cfgperl@2141 --- doio.c | 4 +++- ext/POSIX/POSIX.xs | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/doio.c b/doio.c index 6dc113b..f0f7aa7 100644 --- a/doio.c +++ b/doio.c @@ -1518,7 +1518,9 @@ do_ipcctl(I32 optype, SV **mark, SV **sp) a = SvPV(astr, len); if (len != infosize) croak("Bad arg length for %s, is %lu, should be %ld", - op_desc[optype], (unsigned long)len, (long)infosize); + PL_op_desc[optype], + (unsigned long)len, + (long)infosize); } } else diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 7b97586..7c70bca 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -3176,8 +3176,8 @@ sigaction(sig, action, oldaction = 0) POSIX__SigSet sigset; SV** svp; SV** sigsvp = hv_fetch(GvHVn(PL_siggv), - sig_name[sig], - strlen(sig_name[sig]), + PL_sig_name[sig], + strlen(PL_sig_name[sig]), TRUE); /* Remember old handler name if desired. */ -- 2.7.4