You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by sc...@apache.org on 2010/06/17 20:07:29 UTC

svn commit: r955691 - in /xml/security/trunk/c: CHANGELOG.txt src/dsig/DSIGXPathHere.hpp src/transformers/TXFMDocObject.hpp src/transformers/TXFMSB.hpp src/transformers/TXFMXPath.hpp

Author: scantor
Date: Thu Jun 17 18:07:28 2010
New Revision: 955691

URL: http://svn.apache.org/viewvc?rev=955691&view=rev
Log:
https://issues.apache.org/bugzilla/show_bug.cgi?id=49459

Modified:
    xml/security/trunk/c/CHANGELOG.txt
    xml/security/trunk/c/src/dsig/DSIGXPathHere.hpp
    xml/security/trunk/c/src/transformers/TXFMDocObject.hpp
    xml/security/trunk/c/src/transformers/TXFMSB.hpp
    xml/security/trunk/c/src/transformers/TXFMXPath.hpp

Modified: xml/security/trunk/c/CHANGELOG.txt
URL: http://svn.apache.org/viewvc/xml/security/trunk/c/CHANGELOG.txt?rev=955691&r1=955690&r2=955691&view=diff
==============================================================================
--- xml/security/trunk/c/CHANGELOG.txt (original)
+++ xml/security/trunk/c/CHANGELOG.txt Thu Jun 17 18:07:28 2010
@@ -1,6 +1,6 @@
 Changes since 1.5.1
 =====================================
-* Fix for bug#48676 in RetrievalMethod handler (SC)
+* Fix for bug#48676, RetrievalMethod handler (SC)
 * Fix for bug#45867, support for >1 CRL per KeyInfo (SC)
 * Fix for bug#49148, buffer initialization issue (SC)
 * Fix for bug#49255, vector index bug (SC)
@@ -10,6 +10,7 @@ Changes since 1.5.1
 * Fix for bug#44983, improper c14n of XSLT (SC)
 * Fix for bug#49289, setters for Reference Type/Id (SC)
 * Fix for bug#49371, skip comments in X509Certificate elements (SC)
+* Fix for bug#49459, more header guards (SC)
 * Expose algorithm URI on Signature and Reference objects (SC)
 * White/blacklisting of otherwise registered algorithms (SC)
 

Modified: xml/security/trunk/c/src/dsig/DSIGXPathHere.hpp
URL: http://svn.apache.org/viewvc/xml/security/trunk/c/src/dsig/DSIGXPathHere.hpp?rev=955691&r1=955690&r2=955691&view=diff
==============================================================================
--- xml/security/trunk/c/src/dsig/DSIGXPathHere.hpp (original)
+++ xml/security/trunk/c/src/dsig/DSIGXPathHere.hpp Thu Jun 17 18:07:28 2010
@@ -23,6 +23,9 @@
  *
  */
 
+#ifndef DSIGXPATHHERE_INCLUDE
+#define DSIGXPATHHERE_INCLUDE
+
 #include <xsec/framework/XSECDefs.hpp>
 
 #include <xercesc/util/PlatformUtils.hpp>
@@ -132,6 +135,7 @@ private:
 
 #endif
 
+#endif
 
 
 

Modified: xml/security/trunk/c/src/transformers/TXFMDocObject.hpp
URL: http://svn.apache.org/viewvc/xml/security/trunk/c/src/transformers/TXFMDocObject.hpp?rev=955691&r1=955690&r2=955691&view=diff
==============================================================================
--- xml/security/trunk/c/src/transformers/TXFMDocObject.hpp (original)
+++ xml/security/trunk/c/src/transformers/TXFMDocObject.hpp Thu Jun 17 18:07:28 2010
@@ -25,6 +25,9 @@
  *
  */
 
+#ifndef TXFMDOCOBJECT_INCLUDE
+#define TXFMDOCOBJECT_INCLUDE
+
 #include <xsec/transformers/TXFMBase.hpp>
 #include <xsec/utils/XSECSafeBuffer.hpp>
 #include <xsec/framework/XSECEnv.hpp>
@@ -92,3 +95,4 @@ private:
 	TXFMDocObject();
 };
 
+#endif

Modified: xml/security/trunk/c/src/transformers/TXFMSB.hpp
URL: http://svn.apache.org/viewvc/xml/security/trunk/c/src/transformers/TXFMSB.hpp?rev=955691&r1=955690&r2=955691&view=diff
==============================================================================
--- xml/security/trunk/c/src/transformers/TXFMSB.hpp (original)
+++ xml/security/trunk/c/src/transformers/TXFMSB.hpp Thu Jun 17 18:07:28 2010
@@ -23,6 +23,9 @@
  *
  */
 
+#ifndef TXFMSB_INCLUDE
+#define TXFMSB_INCLUDE
+
 #include <xsec/transformers/TXFMBase.hpp>
 #include <xsec/utils/XSECSafeBuffer.hpp>
 
@@ -67,3 +70,5 @@ private:
 	TXFMSB();
 };
 
+#endif
+

Modified: xml/security/trunk/c/src/transformers/TXFMXPath.hpp
URL: http://svn.apache.org/viewvc/xml/security/trunk/c/src/transformers/TXFMXPath.hpp?rev=955691&r1=955690&r2=955691&view=diff
==============================================================================
--- xml/security/trunk/c/src/transformers/TXFMXPath.hpp (original)
+++ xml/security/trunk/c/src/transformers/TXFMXPath.hpp Thu Jun 17 18:07:28 2010
@@ -23,6 +23,9 @@
  *
  */
 
+#ifndef TXFMXPATH_INCLUDE
+#define TXFMXPATH_INCLUDE
+
 #include <xsec/transformers/TXFMBase.hpp>
 #include <xsec/utils/XSECSafeBuffer.hpp>
 #include <xsec/canon/XSECC14n20010315.hpp>
@@ -107,3 +110,5 @@ private:
 };
 
 #endif
+
+#endif