hojtsy Messages: 241 Registered: January 2006 Location: Budapest, Hungary
Experienced Member
This is a Win32 function. I suppose you are using Linux. It is a bug that it was left in: you can fix the bug for yourself by changing the
WriteFile(hfile, h, strlen(h), &n, NULL);
line to
write(hfile, h, strlen(h));
And do the same modification for the two other bug locations in the same method.