@@ -2276,7 +2276,7 @@ S_parse_body(pTHX_ char **env, XSINIT_t xsinit)
22762276#if defined(SILENT_NO_TAINT_SUPPORT )
22772277 /* silently ignore */
22782278#elif defined(NO_TAINT_SUPPORT )
2279- Perl_croak_nocontext ("This perl was compiled without taint support. "
2279+ croak ("This perl was compiled without taint support. "
22802280 "Cowardly refusing to run with -t or -T flags" );
22812281#else
22822282 CHECK_MALLOC_TOO_LATE_FOR ('t' );
@@ -2291,7 +2291,7 @@ S_parse_body(pTHX_ char **env, XSINIT_t xsinit)
22912291#if defined(SILENT_NO_TAINT_SUPPORT )
22922292 /* silently ignore */
22932293#elif defined(NO_TAINT_SUPPORT )
2294- Perl_croak_nocontext ("This perl was compiled without taint support. "
2294+ croak ("This perl was compiled without taint support. "
22952295 "Cowardly refusing to run with -t or -T flags" );
22962296#else
22972297 CHECK_MALLOC_TOO_LATE_FOR ('T' );
@@ -2409,7 +2409,7 @@ S_parse_body(pTHX_ char **env, XSINIT_t xsinit)
24092409#if defined(SILENT_NO_TAINT_SUPPORT )
24102410 /* silently ignore */
24112411#elif defined(NO_TAINT_SUPPORT )
2412- Perl_croak_nocontext ("This perl was compiled without taint support. "
2412+ croak ("This perl was compiled without taint support. "
24132413 "Cowardly refusing to run with -t or -T flags" );
24142414#else
24152415 CHECK_MALLOC_TOO_LATE_FOR ('T' );
@@ -2448,7 +2448,7 @@ S_parse_body(pTHX_ char **env, XSINIT_t xsinit)
24482448#if defined(SILENT_NO_TAINT_SUPPORT )
24492449 /* silently ignore */
24502450#elif defined(NO_TAINT_SUPPORT )
2451- Perl_croak_nocontext ("This perl was compiled without taint support. "
2451+ croak ("This perl was compiled without taint support. "
24522452 "Cowardly refusing to run with -t or -T flags" );
24532453#else
24542454 if ( !TAINTING_get ) {
@@ -3910,7 +3910,7 @@ Perl_moreswitches(pTHX_ const char *s)
39103910#if defined(SILENT_NO_TAINT_SUPPORT )
39113911 /* silently ignore */
39123912#elif defined(NO_TAINT_SUPPORT )
3913- Perl_croak_nocontext ("This perl was compiled without taint support. "
3913+ croak ("This perl was compiled without taint support. "
39143914 "Cowardly refusing to run with -t or -T flags" );
39153915#else
39163916 if (!TAINTING_get )
@@ -4088,7 +4088,7 @@ Perl_my_unexec(pTHX)
40884088# ifdef VMS
40894089 lib$signal (SS$_DEBUG ); /* ssdef.h #included from vmsish.h */
40904090# elif defined(WIN32 ) || defined(__CYGWIN__ )
4091- Perl_croak_nocontext ("dump is not supported" );
4091+ croak ("dump is not supported" );
40924092# else
40934093 ABORT (); /* for use with undump */
40944094# endif
@@ -4329,7 +4329,7 @@ S_validate_suid(pTHX_ PerlIO *rsfp)
43294329 int fd = PerlIO_fileno (rsfp );
43304330 Stat_t statbuf ;
43314331 if (fd < 0 || PerlLIO_fstat (fd , & statbuf ) < 0 ) { /* may be either wrapped or real suid */
4332- Perl_croak_nocontext ( "Illegal suidscript" );
4332+ croak ( "Illegal suidscript" );
43334333 }
43344334 if ((my_euid != my_uid && my_euid == statbuf .st_uid && statbuf .st_mode & S_ISUID )
43354335 ||
0 commit comments