diff options
Diffstat (limited to 'usr.bin/ssh/auth-rhosts.c')
-rw-r--r-- | usr.bin/ssh/auth-rhosts.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/ssh/auth-rhosts.c b/usr.bin/ssh/auth-rhosts.c index f73f8d4b135..9cbaf9daf28 100644 --- a/usr.bin/ssh/auth-rhosts.c +++ b/usr.bin/ssh/auth-rhosts.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth-rhosts.c,v 1.40 2006/08/01 23:22:47 stevesk Exp $ */ +/* $OpenBSD: auth-rhosts.c,v 1.41 2006/08/03 03:34:41 deraadt Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -14,8 +14,6 @@ * called by a name other than "ssh" or "Secure Shell". */ -#include "includes.h" - #include <sys/types.h> #include <sys/stat.h> @@ -23,13 +21,17 @@ #include <pwd.h> #include <stdio.h> #include <string.h> +#include <stdarg.h> #include "packet.h" +#include "buffer.h" #include "uidswap.h" #include "pathnames.h" #include "log.h" #include "servconf.h" #include "canohost.h" +#include "key.h" +#include "hostfile.h" #include "auth.h" /* import */ |