[BACK]Return to telnet.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / telnet

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/telnet/telnet.c between version 1.3 and 1.4

version 1.3, 1994/02/25 03:00:46 version 1.4, 1995/03/17 18:03:10
Line 105  int
Line 105  int
         donelclchars,   /* the user has set "localchars" */          donelclchars,   /* the user has set "localchars" */
         donebinarytoggle,       /* the user has put us in binary */          donebinarytoggle,       /* the user has put us in binary */
         dontlecho,      /* do we suppress local echoing right now? */          dontlecho,      /* do we suppress local echoing right now? */
         globalmode;          globalmode,
           clienteof = 0;
   
 char *prompt = 0;  char *prompt = 0;
   
Line 2098  Scheduler(block)
Line 2099  Scheduler(block)
     ttyout = ring_full_count(&ttyoring);      ttyout = ring_full_count(&ttyoring);
   
 #if     defined(TN3270)  #if     defined(TN3270)
     ttyin = ring_empty_count(&ttyiring) && (shell_active == 0);      ttyin = ring_empty_count(&ttyiring) && (clienteof == 0) && (shell_active == 0);
 #else   /* defined(TN3270) */  #else   /* defined(TN3270) */
     ttyin = ring_empty_count(&ttyiring);      ttyin = ring_empty_count(&ttyiring) && (clienteof == 0);
 #endif  /* defined(TN3270) */  #endif  /* defined(TN3270) */
   
 #if     defined(TN3270)  #if     defined(TN3270)

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

CVSweb <webmaster@jp.NetBSD.org>