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

Diff for /src/usr.bin/ssh/hostfile.c between version 1.79 and 1.80

version 1.79, 2020/03/06 18:25:12 version 1.80, 2020/05/13 09:52:41
Line 404 
Line 404 
             found) == HOST_FOUND);              found) == HOST_FOUND);
 }  }
   
   int
   lookup_marker_in_hostkeys(struct hostkeys *hostkeys, int want_marker)
   {
           u_int i;
   
           for (i = 0; i < hostkeys->num_entries; i++) {
                   if (hostkeys->entries[i].marker == (HostkeyMarker)want_marker)
                           return 1;
           }
           return 0;
   }
   
 static int  static int
 write_host_entry(FILE *f, const char *host, const char *ip,  write_host_entry(FILE *f, const char *host, const char *ip,
     const struct sshkey *key, int store_hash)      const struct sshkey *key, int store_hash)

Legend:
Removed from v.1.79  
changed lines
  Added in v.1.80