diff options
author | Niels Provos <provos@cvs.openbsd.org> | 1999-10-16 19:23:36 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 1999-10-16 19:23:36 +0000 |
commit | 8de6676bad091487e4d5b1fff77c180985f95714 (patch) | |
tree | 34acf4ca21a82b1e41db2126ccec2b23bfb534e1 /usr.bin/ssh/ssh.h | |
parent | 929041c8a8d81d55206fb72931faf306bba09228 (diff) |
-Wall cleanup
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r-- | usr.bin/ssh/ssh.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h index d7a568fa555..239aa640fcb 100644 --- a/usr.bin/ssh/ssh.h +++ b/usr.bin/ssh/ssh.h @@ -13,7 +13,7 @@ Generic header file for ssh. */ -/* RCSID("$Id: ssh.h,v 1.11 1999/10/14 18:17:42 markus Exp $"); */ +/* RCSID("$Id: ssh.h,v 1.12 1999/10/16 19:23:35 provos Exp $"); */ #ifndef SSH_H #define SSH_H @@ -300,7 +300,7 @@ int match_hostname(const char *host, const char *pattern, unsigned int len); Returns HOST_OK if the host is known and has the specified key, HOST_NEW if the host is not known, and HOST_CHANGED if the host is known but used to have a different host key. The host must be in all lowercase. */ -typedef enum { HOST_OK, HOST_NEW, HOST_CHANGED, HOST_DIFFER } HostStatus; +typedef enum { HOST_OK, HOST_NEW, HOST_CHANGED } HostStatus; HostStatus check_host_in_hostfile(const char *filename, const char *host, unsigned int bits, BIGNUM *e, BIGNUM *n, |