01.09.2006, 14:49
I've fixxed it!
The problem was in dutils at fcopy, wich is called by frename, wich is called by dini_Set
I've replaced:
with:
So you might want to update dutils 
Thanks!
The problem was in dutils at fcopy, wich is called by frename, wich is called by dini_Set

I've replaced:
Code:
new buf2[1];
new i;
for (i=flength(ohnd);i>0;i--) {
fputchar(nhnd, fgetchar(ohnd, buf2[0],false),false);
}
Code:
new tmpres[MAX_STRING];
tmpres[0]=0;
while (fread(ohnd,tmpres)) {
StripNewLine(tmpres);
fwrite(nhnd,tmpres);
fwrite(nhnd,"\r\n");
}

Thanks!

