summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-12-06 16:32:47 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-12-06 16:32:47 +0000
commit65366a8c766c8a769d42aa6e66b70f4512b4b7c3 (patch)
treeec32d1fd8da3491d6da5a88cc0bb54db14ad907d /auth.c
parenteaffb9d6b6daafdfba60e76f766ed0dbf69c3d60 (diff)
- 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 2bf877d1d..a21ad414a 100644
--- a/auth.c
+++ b/auth.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth.c,v 1.29 2001/11/08 20:02:24 markus Exp $"); 26RCSID("$OpenBSD: auth.c,v 1.30 2001/11/17 19:14:34 stevesk Exp $");
27 27
28#ifdef HAVE_LOGIN_H 28#ifdef HAVE_LOGIN_H
29#include <login.h> 29#include <login.h>
@@ -315,7 +315,7 @@ check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
315 Key *found; 315 Key *found;
316 char *user_hostfile; 316 char *user_hostfile;
317 struct stat st; 317 struct stat st;
318 int host_status; 318 HostStatus host_status;
319 319
320 /* Check if we know the host and its host key. */ 320 /* Check if we know the host and its host key. */
321 found = key_new(key->type); 321 found = key_new(key->type);