Change 19880 by [EMAIL PROTECTED] on 2003/06/29 09:48:50
argc, argv.
Affected files ...
... //depot/perl/perl.h#520 edit
Differences ...
==== //depot/perl/perl.h#520 (text) ====
Index: perl/perl.h
--- perl/perl.h#519~19878~ Sun Jun 29 02:28:58 2003
+++ perl/perl.h Sun Jun 29 02:48:50 2003
@@ -1946,14 +1946,14 @@
* perl_parse() has had the chance to set up PL_tainting. */
#ifndef EARLY_INIT3
-# define EARLY_INIT3(argvp,argcp,envp) \
+# define EARLY_INIT3(argcp,argvp,envp) \
STMT_START { \
PL_earlytaint = doing_taint(argcp, argvp, envp); \
} STMT_END;
#endif
#ifndef EARLY_INIT2
-# define EARLY_INIT2(argvp,argcp) \
+# define EARLY_INIT2(argcp,argvp) \
STMT_START { \
PL_earlytaint = doing_taint(argcp, argvp, 0); \
} STMT_END;
End of Patch.