[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.335 and 1.336

version 1.335, 2020/10/04 09:45:01 version 1.336, 2020/10/07 02:20:35
Line 587 
Line 587 
                     "(null)" : key->cert->signature_type, ssh_err(r));                      "(null)" : key->cert->signature_type, ssh_err(r));
                 return 0;                  return 0;
         }          }
           /* Do not attempt hostkey update if a certificate was successful */
           if (options.update_hostkeys != 0) {
                   options.update_hostkeys = 0;
                   debug3("%s: certificate host key in use; disabling "
                       "UpdateHostkeys", __func__);
           }
         return 1;          return 1;
 }  }
   

Legend:
Removed from v.1.335  
changed lines
  Added in v.1.336