[BACK]Return to sys_bsd.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / telnet

Diff for /src/usr.bin/telnet/sys_bsd.c between version 1.6 and 1.7

version 1.6, 1998/12/28 11:13:51 version 1.7, 1999/05/07 18:29:07
Line 199 
Line 199 
 TerminalFlushOutput()  TerminalFlushOutput()
 {  {
 #ifdef  TIOCFLUSH  #ifdef  TIOCFLUSH
     (void) ioctl(fileno(stdout), TIOCFLUSH, (char *) 0);      int com = FWRITE;
       (void) ioctl(fileno(stdout), TIOCFLUSH, (int *) &com);
 #else  #else
     (void) ioctl(fileno(stdout), TCFLSH, (char *) 0);      (void) ioctl(fileno(stdout), TCFLSH, (int *) 0);
 #endif  #endif
 }  }
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7