Bulletin number: 48 Products affected: S708A Description: iserver sources missing carriage returns Component: iserver Date: Wed Apr 1818:39:10 BST 1990 ----- The source files for the iserver on the S708A disk have lines terminated with a single line-feed character instead of the line-feed/carriage-return required by many DOS tools and some editors. The 'easy' way to fix them is to read them into emacs and then write them out again (if you can drive emacs). Alternatively this bit of Microsoft C will do the job if the files in question are piped into it as follows: type infile | fil.exe > outfile ===== fil.c ================================================ #include int main() { char c; int i; while((c = getchar()) != EOF){ if(c == 0x0A) putchar('\n'); else putchar(c); } } =============================================================