jdonohue    00/04/13 10:13:38

  Modified:    c/src/XSLT StylesheetHandler.cpp
  Log:
  Fixed == should be !=
  
  Revision  Changes    Path
  1.19      +1 -1      xml-xalan/c/src/XSLT/StylesheetHandler.cpp
  
  Index: StylesheetHandler.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetHandler.cpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- StylesheetHandler.cpp     2000/04/13 16:49:00     1.18
  +++ StylesheetHandler.cpp     2000/04/13 17:13:37     1.19
  @@ -268,7 +268,7 @@
   
                const XalanDOMString    localName = index == nameLength ? 
XalanDOMString(name) : substring(name, index + 1);
   
  -             if(length(ns) == 0 && nameLength == length(localName))
  +             if(length(ns) == 0 && nameLength != length(localName))
                {
                        // Warn that there is a prefix that was not resolved...
                        m_constructionContext.warn(XalanDOMString("Could not 
resolve prefix ") + name);
  
  
  

Reply via email to