summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
authormouring <mouring>2001-12-06 16:32:47 +0000
committermouring <mouring>2001-12-06 16:32:47 +0000
commitdf869411c31f564a91cf1add4d889ce736734c39 (patch)
tree2ca2b4a55bd4f6e6288d36ca59d96c16d8b5dbe0 /auth.c
parent264bf4811e3cd48157ab0601a1ecd567b979c373 (diff)
downloadopenssh-df869411c31f564a91cf1add4d889ce736734c39.tar.gz
- stevesk@cvs.openbsd.org 2001/11/17 19:14:34
[auth2.c auth.c readconf.c servconf.c ssh-agent.c ssh-keygen.c] enum/int type cleanup where it made sense to do so; ok markus@
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth.c b/auth.c
index 2bf877d1..a21ad414 100644
--- a/auth.c
+++ b/auth.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth.c,v 1.29 2001/11/08 20:02:24 markus Exp $");
+RCSID("$OpenBSD: auth.c,v 1.30 2001/11/17 19:14:34 stevesk Exp $");
#ifdef HAVE_LOGIN_H
#include <login.h>
@@ -315,7 +315,7 @@ check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
Key *found;
char *user_hostfile;
struct stat st;
- int host_status;
+ HostStatus host_status;
/* Check if we know the host and its host key. */
found = key_new(key->type);