summaryrefslogtreecommitdiff
path: root/auth-shadow.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2009-12-29 21:38:40 +0000
committerColin Watson <cjwatson@debian.org>2009-12-29 21:38:40 +0000
commit1b816ea846aca3ee89e7995373ace609e9518424 (patch)
treeb41cdc8495cae7fa9c2e0f98a5f2e71656b61f9a /auth-shadow.c
parentfa585019a79ebcb4e0202b1c33f87ff1c5c9ce1c (diff)
parent086ea76990b1e6287c24b6db74adffd4605eb3b0 (diff)
import openssh-4.6p1-gsskex-20070312.patch
Diffstat (limited to 'auth-shadow.c')
-rw-r--r--auth-shadow.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/auth-shadow.c b/auth-shadow.c
index 59737b93c..8b3160aee 100644
--- a/auth-shadow.c
+++ b/auth-shadow.c
@@ -23,11 +23,14 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$Id: auth-shadow.c,v 1.7 2005/07/17 07:04:47 djm Exp $");
27 26
28#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE) 27#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
29#include <shadow.h> 28#include <shadow.h>
29#include <stdarg.h>
30#include <string.h>
30 31
32#include "key.h"
33#include "hostfile.h"
31#include "auth.h" 34#include "auth.h"
32#include "buffer.h" 35#include "buffer.h"
33#include "log.h" 36#include "log.h"