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

Diff for /src/usr.bin/ssh/monitor.c between version 1.153 and 1.154

version 1.153, 2015/09/04 04:44:08 version 1.154, 2015/10/20 23:24:25
Line 861 
Line 861 
         char *response;          char *response;
         int authok;          int authok;
   
         if (authctxt->as == 0)          if (authctxt->as == NULL)
                 fatal("%s: no bsd auth session", __func__);                  fatal("%s: no bsd auth session", __func__);
   
         response = buffer_get_string(m, NULL);          response = buffer_get_string(m, NULL);
Line 1512 
Line 1512 
         sshbuf_free(child_state);          sshbuf_free(child_state);
         child_state = NULL;          child_state = NULL;
   
         if ((kex = ssh->kex) != 0) {          if ((kex = ssh->kex) != NULL) {
                 /* XXX set callbacks */                  /* XXX set callbacks */
 #ifdef WITH_OPENSSL  #ifdef WITH_OPENSSL
                 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;                  kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;

Legend:
Removed from v.1.153  
changed lines
  Added in v.1.154