From: Jarkko Hietaniemi Date: Fri, 30 Oct 1998 09:12:59 +0000 (+0000) Subject: #2133 fallout. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4ec43091e8e6657cb260b5e563df30aaa154effe;p=p5sagit%2Fp5-mst-13.2.git #2133 fallout. p4raw-id: //depot/cfgperl@2141 --- 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. */