Author: phred
Date: Sun Jul 31 05:23:57 2011
New Revision: 1152547
URL: http://svn.apache.org/viewvc?rev=1152547&view=rev
Log:
Typo fix, thanks to Salvador Garcia for the fix.
Reviewed by: Fred Moyer
Tested by: Fred Moyer
Modified:
perl/modperl/branches/1.x/Changes
perl/modperl/branches/1.x/src/modules/perl/mod_perl.h
Modified: perl/modperl/branches/1.x/Changes
URL:
http://svn.apache.org/viewvc/perl/modperl/branches/1.x/Changes?rev=1152547&r1=1152546&r2=1152547&view=diff
==============================================================================
--- perl/modperl/branches/1.x/Changes (original)
+++ perl/modperl/branches/1.x/Changes Sun Jul 31 05:23:57 2011
@@ -10,6 +10,9 @@ all changes without author attribution a
=item 1.32-dev
+Post RT 64999 typo spot in CvGV macro
+[Salvador Ortiz Garcia <[email protected]>]
+
RT 64999, perl 5.14 compatibility, GvCV and GvGP lvalue changes in perl core
[Todd Wade <[email protected]>]
Modified: perl/modperl/branches/1.x/src/modules/perl/mod_perl.h
URL:
http://svn.apache.org/viewvc/perl/modperl/branches/1.x/src/modules/perl/mod_perl.h?rev=1152547&r1=1152546&r2=1152547&view=diff
==============================================================================
--- perl/modperl/branches/1.x/src/modules/perl/mod_perl.h (original)
+++ perl/modperl/branches/1.x/src/modules/perl/mod_perl.h Sun Jul 31 05:23:57
2011
@@ -1030,8 +1030,8 @@ else { \
#define GvCV_set(gv, cv) (GvCV(gv) = (cv))
#endif
-#ifndef GvCV_set
-#define CvGV_set(gv, cv) (CvVG(gv) = (cv))
+#ifndef CvGV_set
+#define CvGV_set(gv, cv) (CvGV(gv) = (cv))
#endif
typedef struct {