summaryrefslogtreecommitdiff
path: root/auth2-passwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth2-passwd.c')
-rw-r--r--auth2-passwd.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/auth2-passwd.c b/auth2-passwd.c
index a1b65da50..421c5c25d 100644
--- a/auth2-passwd.c
+++ b/auth2-passwd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth2-passwd.c,v 1.8 2006/07/22 20:48:22 stevesk Exp $ */ 1/* $OpenBSD: auth2-passwd.c,v 1.9 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 *
@@ -25,12 +25,21 @@
25 25
26#include "includes.h" 26#include "includes.h"
27 27
28#include <sys/types.h>
29
28#include <string.h> 30#include <string.h>
31#include <stdarg.h>
29 32
30#include "xmalloc.h" 33#include "xmalloc.h"
31#include "packet.h" 34#include "packet.h"
32#include "log.h" 35#include "log.h"
36#include "key.h"
37#include "hostfile.h"
33#include "auth.h" 38#include "auth.h"
39#include "buffer.h"
40#ifdef GSSAPI
41#include "ssh-gss.h"
42#endif
34#include "monitor_wrap.h" 43#include "monitor_wrap.h"
35#include "servconf.h" 44#include "servconf.h"
36 45