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

Diff for /src/usr.bin/ssh/sshconnect2.c between version 1.63 and 1.64

version 1.63, 2001/04/04 00:06:54 version 1.64, 2001/04/04 09:48:35
Line 111 
Line 111 
                 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;                  myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
         }          }
   
         kex = kex_start(myproposal);          kex = kex_setup(myproposal);
         kex->client_version_string=client_version_string;          kex->client_version_string=client_version_string;
         kex->server_version_string=server_version_string;          kex->server_version_string=server_version_string;
         kex->check_host_key=&check_host_key_callback;          kex->check_host_key=&check_host_key_callback;
Line 254 
Line 254 
         /* initial userauth request */          /* initial userauth request */
         userauth_none(&authctxt);          userauth_none(&authctxt);
   
         //dispatch_init(&input_userauth_error);          /* dispatch_init(&input_userauth_error); */
         for (i = 50; i <= 254; i++) {          for (i = 50; i <= 254; i++) {
                 dispatch_set(i, &input_userauth_error);                  dispatch_set(i, &input_userauth_error);
         }          }

Legend:
Removed from v.1.63  
changed lines
  Added in v.1.64