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

Diff for /src/usr.bin/ssh/sshconnect.c between version 1.298 and 1.299

version 1.298, 2018/04/10 00:10:49 version 1.299, 2018/07/09 21:03:30
Line 38 
Line 38 
   
 #include "xmalloc.h"  #include "xmalloc.h"
 #include "ssh.h"  #include "ssh.h"
 #include "buffer.h"  #include "sshbuf.h"
 #include "packet.h"  #include "packet.h"
 #include "uidswap.h"  #include "uidswap.h"
 #include "compat.h"  #include "compat.h"
Line 747 
Line 747 
                 error("%s", reason);                  error("%s", reason);
                 return 0;                  return 0;
         }          }
         if (buffer_len(host_key->cert->critical) != 0) {          if (sshbuf_len(host_key->cert->critical) != 0) {
                 error("Certificate for %s contains unsupported "                  error("Certificate for %s contains unsupported "
                     "critical options(s)", host);                      "critical options(s)", host);
                 return 0;                  return 0;

Legend:
Removed from v.1.298  
changed lines
  Added in v.1.299