summaryrefslogtreecommitdiff
path: root/auth2-passwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth2-passwd.c')
-rw-r--r--auth2-passwd.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/auth2-passwd.c b/auth2-passwd.c
index 2321ef47b..421c5c25d 100644
--- a/auth2-passwd.c
+++ b/auth2-passwd.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: auth2-passwd.c,v 1.9 2006/08/03 03:34:41 deraadt Exp $ */
1/* 2/*
2 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
3 * 4 *
@@ -23,12 +24,22 @@
23 */ 24 */
24 25
25#include "includes.h" 26#include "includes.h"
26RCSID("$OpenBSD: auth2-passwd.c,v 1.5 2003/12/31 00:24:50 dtucker Exp $"); 27
28#include <sys/types.h>
29
30#include <string.h>
31#include <stdarg.h>
27 32
28#include "xmalloc.h" 33#include "xmalloc.h"
29#include "packet.h" 34#include "packet.h"
30#include "log.h" 35#include "log.h"
36#include "key.h"
37#include "hostfile.h"
31#include "auth.h" 38#include "auth.h"
39#include "buffer.h"
40#ifdef GSSAPI
41#include "ssh-gss.h"
42#endif
32#include "monitor_wrap.h" 43#include "monitor_wrap.h"
33#include "servconf.h" 44#include "servconf.h"
34 45