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

Diff for /src/usr.bin/ssh/kex.c between version 1.174 and 1.175

version 1.174, 2023/02/17 04:22:50 version 1.175, 2023/02/28 21:31:50
Line 1328 
Line 1328 
         }          }
         peer_version_string = sshbuf_dup_string(peer_version);          peer_version_string = sshbuf_dup_string(peer_version);
         if (peer_version_string == NULL)          if (peer_version_string == NULL)
                 error_f("sshbuf_dup_string failed");                  fatal_f("sshbuf_dup_string failed");
         /* XXX must be same size for sscanf */          /* XXX must be same size for sscanf */
         if ((remote_version = calloc(1, sshbuf_len(peer_version))) == NULL) {          if ((remote_version = calloc(1, sshbuf_len(peer_version))) == NULL) {
                 error_f("calloc failed");                  error_f("calloc failed");

Legend:
Removed from v.1.174  
changed lines
  Added in v.1.175