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

Diff for /src/usr.bin/ssh/hostfile.h between version 1.7 and 1.8

version 1.7, 2001/02/08 19:30:51 version 1.8, 2001/06/26 06:32:53
Line 15 
Line 15 
 #define HOSTFILE_H  #define HOSTFILE_H
   
 int  int
 auth_rsa_read_key(char **cpp, u_int *bitsp, BIGNUM * e, BIGNUM * n);  auth_rsa_read_key(char **, u_int *, BIGNUM *, BIGNUM *);
   
 /*  /*
  * Checks whether the given host is already in the list of our known hosts.   * Checks whether the given host is already in the list of our known hosts.
Line 28 
Line 28 
 }       HostStatus;  }       HostStatus;
   
 HostStatus  HostStatus
 check_host_in_hostfile(const char *filename, const char *host, Key *key,  check_host_in_hostfile(const char *, const char *, Key *, Key *, int *);
     Key *found, int *line);  
   
 /*  /*
  * Appends an entry to the host file.  Returns false if the entry could not   * Appends an entry to the host file.  Returns false if the entry could not
  * be appended.   * be appended.
  */   */
 int     add_host_to_hostfile(const char *filename, const char *host, Key *key);  int     add_host_to_hostfile(const char *, const char *, Key *);
   
 #endif  #endif

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8