summaryrefslogtreecommitdiff
path: root/auth-rsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth-rsa.c')
-rw-r--r--auth-rsa.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/auth-rsa.c b/auth-rsa.c
index f3e27e9fa..1c66b86a4 100644
--- a/auth-rsa.c
+++ b/auth-rsa.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth-rsa.c,v 1.70 2006/08/01 23:22:47 stevesk Exp $ */ 1/* $OpenBSD: auth-rsa.c,v 1.71 2006/08/03 03:34:41 deraadt Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -26,18 +26,23 @@
26#include <stdio.h> 26#include <stdio.h>
27#include <string.h> 27#include <string.h>
28 28
29#include "xmalloc.h"
29#include "rsa.h" 30#include "rsa.h"
30#include "packet.h" 31#include "packet.h"
31#include "xmalloc.h"
32#include "ssh1.h" 32#include "ssh1.h"
33#include "uidswap.h" 33#include "uidswap.h"
34#include "match.h" 34#include "match.h"
35#include "buffer.h"
35#include "auth-options.h" 36#include "auth-options.h"
36#include "pathnames.h" 37#include "pathnames.h"
37#include "log.h" 38#include "log.h"
38#include "servconf.h" 39#include "servconf.h"
39#include "auth.h" 40#include "key.h"
40#include "hostfile.h" 41#include "hostfile.h"
42#include "auth.h"
43#ifdef GSSAPI
44#include "ssh-gss.h"
45#endif
41#include "monitor_wrap.h" 46#include "monitor_wrap.h"
42#include "ssh.h" 47#include "ssh.h"
43#include "misc.h" 48#include "misc.h"