summaryrefslogtreecommitdiff
path: root/auth-rhosts.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth-rhosts.c')
-rw-r--r--auth-rhosts.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/auth-rhosts.c b/auth-rhosts.c
index aaba8557e..cd0a7967a 100644
--- a/auth-rhosts.c
+++ b/auth-rhosts.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: auth-rhosts.c,v 1.41 2006/08/03 03:34:41 deraadt Exp $ */
1/* 2/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -14,14 +15,27 @@
14 */ 15 */
15 16
16#include "includes.h" 17#include "includes.h"
17RCSID("$OpenBSD: auth-rhosts.c,v 1.33 2005/07/17 07:17:54 djm Exp $"); 18
19#include <sys/types.h>
20#include <sys/stat.h>
21
22#ifdef HAVE_NETGROUP_H
23# include <netgroup.h>
24#endif
25#include <pwd.h>
26#include <stdio.h>
27#include <string.h>
28#include <stdarg.h>
18 29
19#include "packet.h" 30#include "packet.h"
31#include "buffer.h"
20#include "uidswap.h" 32#include "uidswap.h"
21#include "pathnames.h" 33#include "pathnames.h"
22#include "log.h" 34#include "log.h"
23#include "servconf.h" 35#include "servconf.h"
24#include "canohost.h" 36#include "canohost.h"
37#include "key.h"
38#include "hostfile.h"
25#include "auth.h" 39#include "auth.h"
26 40
27/* import */ 41/* import */