aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssh/auth-passwd.c
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2006-09-30 13:38:06 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2006-09-30 13:38:06 +0000
commit333ee03933b2892718b59734cd7dd3608b6caf1a (patch)
treee8ca9ffe5bcb164be41a74f30a765b86bb38c885 /crypto/openssh/auth-passwd.c
parenta4f3c15342ecc9af9988070f5350a7d52b3e3148 (diff)
downloadsrc-333ee03933b2892718b59734cd7dd3608b6caf1a.tar.gz
src-333ee03933b2892718b59734cd7dd3608b6caf1a.zip
Merge conflicts.
MFC after: 1 week
Notes
Notes: svn path=/head/; revision=162856
Diffstat (limited to 'crypto/openssh/auth-passwd.c')
-rw-r--r--crypto/openssh/auth-passwd.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/crypto/openssh/auth-passwd.c b/crypto/openssh/auth-passwd.c
index c5d52b26e6ce..a83659150e4d 100644
--- a/crypto/openssh/auth-passwd.c
+++ b/crypto/openssh/auth-passwd.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: auth-passwd.c,v 1.40 2006/08/03 03:34:41 deraadt Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -36,13 +37,21 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth-passwd.c,v 1.34 2005/07/19 15:32:26 otto Exp $");
-RCSID("$FreeBSD$");
+__RCSID("$FreeBSD$");
+
+#include <sys/types.h>
+
+#include <pwd.h>
+#include <stdio.h>
+#include <string.h>
+#include <stdarg.h>
#include "packet.h"
#include "buffer.h"
#include "log.h"
#include "servconf.h"
+#include "key.h"
+#include "hostfile.h"
#include "auth.h"
#include "auth-options.h"