summaryrefslogtreecommitdiff
path: root/auth2-pubkey.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth2-pubkey.c')
-rw-r--r--auth2-pubkey.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/auth2-pubkey.c b/auth2-pubkey.c
index 41763f763..9863cd9e6 100644
--- a/auth2-pubkey.c
+++ b/auth2-pubkey.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth2-pubkey.c,v 1.14 2006/08/01 23:22:47 stevesk Exp $ */ 1/* $OpenBSD: auth2-pubkey.c,v 1.15 2006/08/03 03:34:41 deraadt Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * 4 *
@@ -30,22 +30,26 @@
30 30
31#include <pwd.h> 31#include <pwd.h>
32#include <stdio.h> 32#include <stdio.h>
33#include <stdarg.h>
33 34
35#include "xmalloc.h"
34#include "ssh.h" 36#include "ssh.h"
35#include "ssh2.h" 37#include "ssh2.h"
36#include "xmalloc.h"
37#include "packet.h" 38#include "packet.h"
38#include "buffer.h" 39#include "buffer.h"
39#include "log.h" 40#include "log.h"
40#include "servconf.h" 41#include "servconf.h"
41#include "compat.h" 42#include "compat.h"
42#include "bufaux.h"
43#include "auth.h"
44#include "key.h" 43#include "key.h"
44#include "hostfile.h"
45#include "auth.h"
45#include "pathnames.h" 46#include "pathnames.h"
46#include "uidswap.h" 47#include "uidswap.h"
47#include "auth-options.h" 48#include "auth-options.h"
48#include "canohost.h" 49#include "canohost.h"
50#ifdef GSSAPI
51#include "ssh-gss.h"
52#endif
49#include "monitor_wrap.h" 53#include "monitor_wrap.h"
50#include "misc.h" 54#include "misc.h"
51 55