[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.180 and 1.181

version 1.180, 2004/07/28 09:40:29 version 1.181, 2004/12/23 17:35:48
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.180  
changed lines
  Added in v.1.181