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

Diff for /src/usr.bin/ssh/session.c between version 1.172.2.1 and 1.172.2.2

version 1.172.2.1, 2004/08/19 04:13:27 version 1.172.2.2, 2005/03/10 17:15:04
Line 242 
Line 242 
         u_int proto_len, data_len, dlen, compression_level = 0;          u_int proto_len, data_len, dlen, compression_level = 0;
   
         s = session_new();          s = session_new();
           if (s == NULL) {
                   error("no more sessions");
                   return;
           }
         s->authctxt = authctxt;          s->authctxt = authctxt;
         s->pw = authctxt->pw;          s->pw = authctxt->pw;
   

Legend:
Removed from v.1.172.2.1  
changed lines
  Added in v.1.172.2.2