[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.210 and 1.211

version 1.210, 2014/07/15 15:54:14 version 1.211, 2014/12/11 05:13:28
Line 1497 
Line 1497 
                 debug("No more client hostkeys for hostbased authentication.");                  debug("No more client hostkeys for hostbased authentication.");
                 return 0;                  return 0;
         }          }
   
           debug("%s: trying hostkey type %s", __func__, key_type(private));
   
         if (key_to_blob(private, &blob, &blen) == 0) {          if (key_to_blob(private, &blob, &blen) == 0) {
                 key_free(private);                  key_free(private);
                 return 0;                  return 0;
         }          }
   
         /* figure out a name for the client host */          /* figure out a name for the client host */
         p = get_local_name(packet_get_connection_in());          p = get_local_name(packet_get_connection_in());
         if (p == NULL) {          if (p == NULL) {

Legend:
Removed from v.1.210  
changed lines
  Added in v.1.211