blautenb    2003/07/28 05:52:04

  Modified:    c/src/dsig DSIGXPathFilterExpr.cpp
  Log:
  Correct namespace when creating element (bug with Xerces 2.3)
  
  Revision  Changes    Path
  1.4       +2 -2      xml-security/c/src/dsig/DSIGXPathFilterExpr.cpp
  
  Index: DSIGXPathFilterExpr.cpp
  ===================================================================
  RCS file: /home/cvs/xml-security/c/src/dsig/DSIGXPathFilterExpr.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DSIGXPathFilterExpr.cpp   5 Jul 2003 10:30:30 -0000       1.3
  +++ DSIGXPathFilterExpr.cpp   28 Jul 2003 12:52:04 -0000      1.4
  @@ -205,7 +205,7 @@
        // Create the XPath element
        prefix = mp_sig->getXPFNSPrefix();
        makeQName(str, prefix, "XPath");
  -     xe = doc->createElementNS(DSIGConstants::s_unicodeStrURIDSIG, 
str.rawXMLChBuffer());
  +     xe = doc->createElementNS(DSIGConstants::s_unicodeStrURIXPF, 
str.rawXMLChBuffer());
        mp_xpathFilterNode = xe;
   
        // Put in correct namespace
  
  
  

Reply via email to