summaryrefslogtreecommitdiff
path: root/auth-passwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth-passwd.c')
-rw-r--r--auth-passwd.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/auth-passwd.c b/auth-passwd.c
index 6e6d0d76a..be6283796 100644
--- a/auth-passwd.c
+++ b/auth-passwd.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: auth-passwd.c,v 1.40 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
@@ -36,12 +37,20 @@
36 */ 37 */
37 38
38#include "includes.h" 39#include "includes.h"
39RCSID("$OpenBSD: auth-passwd.c,v 1.34 2005/07/19 15:32:26 otto Exp $"); 40
41#include <sys/types.h>
42
43#include <pwd.h>
44#include <stdio.h>
45#include <string.h>
46#include <stdarg.h>
40 47
41#include "packet.h" 48#include "packet.h"
42#include "buffer.h" 49#include "buffer.h"
43#include "log.h" 50#include "log.h"
44#include "servconf.h" 51#include "servconf.h"
52#include "key.h"
53#include "hostfile.h"
45#include "auth.h" 54#include "auth.h"
46#include "auth-options.h" 55#include "auth-options.h"
47 56