? src/Linux_2.2.17_i386_DBG ? src/wp/impexp/xp/ie_exp_Psion.h.org ? src/wp/impexp/xp/ie_exp_Psion.cpp.org Index: src/wp/impexp/xp/ie_exp_Psion.cpp =================================================================== RCS file: /cvsroot/abi/src/wp/impexp/xp/ie_exp_Psion.cpp,v retrieving revision 1.1 diff -u -2 -r1.1 ie_exp_Psion.cpp --- src/wp/impexp/xp/ie_exp_Psion.cpp 2001/01/19 05:33:09 1.1 +++ src/wp/impexp/xp/ie_exp_Psion.cpp 2001/01/20 14:38:01 @@ -766,5 +766,5 @@ { char *slash; - slash = index(input,'/'); + slash = strchr(input,'/'); tab->kind = psiconv_tab_left; if (slash) { @@ -789,7 +789,7 @@ currentPos = input; while (*currentPos != '\000') { - nextPos = index(currentPos,','); + nextPos = strchr(currentPos,','); if (!nextPos) - nextPos = index(currentPos,'\000'); + nextPos = strchr(currentPos,'\000'); if (!(copy = (char *) malloc(nextPos - currentPos + 1))) return UT_FALSE;