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

Diff for /src/usr.bin/ssh/sshconnect.c between version 1.72 and 1.73

version 1.72, 2000/05/04 09:50:22 version 1.73, 2000/05/17 08:20:15
Line 297 
Line 297 
         return 1;          return 1;
 }  }
   
 char *  
 chop(char *s)  
 {  
         char *t = s;  
         while (*t) {  
                 if(*t == '\n' || *t == '\r') {  
                         *t = '\0';  
                         return s;  
                 }  
                 t++;  
         }  
         return s;  
   
 }  
   
 /*  /*
  * Waits for the server identification string, and sends our own   * Waits for the server identification string, and sends our own
  * identification string.   * identification string.

Legend:
Removed from v.1.72  
changed lines
  Added in v.1.73