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

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

version 1.3, 1998/03/12 04:57:46 version 1.4, 2001/11/19 19:02:16
Line 99 
Line 99 
   
     int      int
 DataToNetwork(buffer, count, done)  DataToNetwork(buffer, count, done)
     register char *buffer;      /* where the data is */      char *buffer;       /* where the data is */
     register int  count;        /* how much to send */      int  count; /* how much to send */
     int           done;         /* is this the last of a logical block */      int           done;         /* is this the last of a logical block */
 {  {
     register int loop, c;      int loop, c;
     int origCount;      int origCount;
   
     origCount = count;      origCount = count;
Line 184 
Line 184 
   
     int      int
 DataToTerminal(buffer, count)  DataToTerminal(buffer, count)
     register char       *buffer;                /* where the data is */      char        *buffer;                /* where the data is */
     register int        count;                  /* how much to send */      int         count;                  /* how much to send */
 {  {
     register int c;      int c;
     int origCount;      int origCount;
   
     origCount = count;      origCount = count;

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