Index: cvs_string.h =================================================================== RCS file: /usr/local/cvs/cvsnt/cvsapi/cvs_string.h,v retrieving revision 1.1.2.32 diff -c -r1.1.2.32 cvs_string.h *** cvs_string.h 9 Nov 2005 11:49:03 -0000 1.1.2.32 --- cvs_string.h 4 Aug 2006 02:42:31 -0000 *************** *** 109,114 **** --- 109,118 ---- str.resize(str.size()*2); else if(res>=(int)str.size()) /* C99 */ str.resize(res+1); + #ifdef __digital + else if(res>=(int)str.size()) /* C99 */ + str.resize(res+1); + #endif else break; } while(true);