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

Diff for /src/usr.bin/ssh/packet.c between version 1.84 and 1.85

version 1.84, 2002/01/11 10:31:05 version 1.85, 2002/01/18 18:14:17
Line 130 
Line 130 
                 fatal("packet_set_connection: cannot load cipher 'none'");                  fatal("packet_set_connection: cannot load cipher 'none'");
         connection_in = fd_in;          connection_in = fd_in;
         connection_out = fd_out;          connection_out = fd_out;
         cipher_init(&send_context, none, (u_char *) "", 0, NULL, 0);          cipher_init(&send_context, none, "", 0, NULL, 0);
         cipher_init(&receive_context, none, (u_char *) "", 0, NULL, 0);          cipher_init(&receive_context, none, "", 0, NULL, 0);
         newkeys[MODE_IN] = newkeys[MODE_OUT] = NULL;          newkeys[MODE_IN] = newkeys[MODE_OUT] = NULL;
         if (!initialized) {          if (!initialized) {
                 initialized = 1;                  initialized = 1;

Legend:
Removed from v.1.84  
changed lines
  Added in v.1.85