(file) Return to String.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/String.cpp between version 1.85 and 1.87

version 1.85, 2003/10/22 14:26:04 version 1.87, 2003/11/20 23:49:55
Line 37 
Line 37 
 #include "InternalException.h" #include "InternalException.h"
 #include <iostream> #include <iostream>
 #include <fstream> #include <fstream>
 #ifndef PEGASUS_REMOVE_DEPRECATED  #ifdef PEGASUS_USE_DEPRECATED_INTERFACES
 #include "System.h"  // for strcasecmp #include "System.h"  // for strcasecmp
 #endif #endif
  
Line 640 
Line 640 
  
     Uint32 count;     Uint32 count;
  
     for(count = 0; ((msg16[count]) != Char16(0x00)) && (count <= n); ++count);      for(count = 0; ((msg16[count]) != Char16(0x00)) && (count < (n - 1)); ++count);
  
     _rep->c16a.append(msg16, count);     _rep->c16a.append(msg16, count);
  
Line 964 
Line 964 
     return String::compare(str1, str2) >= 0;     return String::compare(str1, str2) >= 0;
 } }
  
 #ifndef PEGASUS_REMOVE_DEPRECATED  #ifdef PEGASUS_USE_DEPRECATED_INTERFACES
 int CompareNoCase(const char* s1, const char* s2) int CompareNoCase(const char* s1, const char* s2)
 { {
     return System::strcasecmp(s1, s2);     return System::strcasecmp(s1, s2);


Legend:
Removed from v.1.85  
changed lines
  Added in v.1.87

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2