abagchi     99/11/17 13:52:52

  Modified:    c/src/util/Transcoders/Iconv IconvTransService.cpp
  Log:
  Changed wcscasecmp() to wcscmp() to make it work on Solaris and AIX
  
  Revision  Changes    Path
  1.2       +5 -2      
xml-xerces/c/src/util/Transcoders/Iconv/IconvTransService.cpp
  
  Index: IconvTransService.cpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/c/src/util/Transcoders/Iconv/IconvTransService.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IconvTransService.cpp     1999/11/09 01:06:10     1.1
  +++ IconvTransService.cpp     1999/11/17 21:52:49     1.2
  @@ -56,9 +56,16 @@
   
   /**
    * $Log: IconvTransService.cpp,v $
  - * Revision 1.1  1999/11/09 01:06:10  twl
  - * Initial revision
  + * Revision 1.2  1999/11/17 21:52:49  abagchi
  + * Changed wcscasecmp() to wcscmp() to make it work on Solaris and AIX
  + * PR:
  + * Obtained from:
  + * Submitted by:
  + * Reviewed by:
    *
  + * Revision 1.1.1.1  1999/11/09 01:06:10  twl
  + * Initial checkin
  + *
    * Revision 1.7  1999/11/08 20:45:34  rahul
    * Swat for adding in Product name and CVS comment log variable.
    *
  @@ -128,7 +135,7 @@
           *target++ = *ptr;
       *target = 0x00;
   
  -    int retval = wcscasecmp(tmp1, tmp2);
  +    int retval = wcscmp(tmp1, tmp2);
   
       delete [] tmp1;
       delete [] tmp2;
  @@ -158,7 +165,7 @@
           *target++ = *ptr;
       *target = 0x00;
   
  -    int retval = wcsncasecmp(tmp1, tmp2, maxChars);
  +    int retval = wcsncmp(tmp1, tmp2, maxChars);
   
       delete [] tmp1;
       delete [] tmp2;
  
  
  

Reply via email to