[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.25 and 1.26

version 1.25, 2001/04/06 22:12:47 version 1.26, 2001/04/12 19:15:24
Line 115 
Line 115 
         char *cp, *cp2;          char *cp, *cp2;
         HostStatus end_return;          HostStatus end_return;
   
           debug3("check_host_in_hostfile: filename %s", filename);
         if (key == NULL)          if (key == NULL)
                 fatal("no key to look up");                  fatal("no key to look up");
         /* Open the file containing the list of known hosts. */          /* Open the file containing the list of known hosts. */
Line 166 
Line 167 
                 /* Check if the current key is the same as the given key. */                  /* Check if the current key is the same as the given key. */
                 if (key_equal(key, found)) {                  if (key_equal(key, found)) {
                         /* Ok, they match. */                          /* Ok, they match. */
                           debug3("check_host_in_hostfile: match line %d", linenum);
                         fclose(f);                          fclose(f);
                         return HOST_OK;                          return HOST_OK;
                 }                  }

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26