summaryrefslogtreecommitdiff
path: root/auth-passwd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-10 20:53:08 +1000
committerDamien Miller <djm@mindrot.org>2006-07-10 20:53:08 +1000
commit9f2abc47ebd58c974f51718f31009b49a001c0d7 (patch)
treeb1596b7b77ec40c33749f40e0e126fe389d4fd47 /auth-passwd.c
parentfef95ad81645250b83f7c83233648471d8d0edab (diff)
- stevesk@cvs.openbsd.org 2006/07/06 16:03:53
[auth-options.c auth-options.h auth-passwd.c auth-rh-rsa.c] [auth-rhosts.c auth-rsa.c auth.c auth.h auth2-hostbased.c] [auth2-pubkey.c auth2.c includes.h misc.c misc.h monitor.c] [monitor_wrap.c monitor_wrap.h scp.c serverloop.c session.c] [session.h sftp-common.c ssh-add.c ssh-keygen.c ssh-keysign.c] [ssh.c sshconnect.c sshconnect.h sshd.c sshpty.c sshpty.h uidswap.c] [uidswap.h] move #include <pwd.h> out of includes.h; ok markus@
Diffstat (limited to 'auth-passwd.c')
-rw-r--r--auth-passwd.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/auth-passwd.c b/auth-passwd.c
index 2ebcc5fc4..3cf86dcbd 100644
--- a/auth-passwd.c
+++ b/auth-passwd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth-passwd.c,v 1.36 2006/03/25 13:17:01 djm Exp $ */ 1/* $OpenBSD: auth-passwd.c,v 1.37 2006/07/06 16:03:53 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -38,6 +38,10 @@
38 38
39#include "includes.h" 39#include "includes.h"
40 40
41#include <sys/types.h>
42
43#include <pwd.h>
44
41#include "packet.h" 45#include "packet.h"
42#include "buffer.h" 46#include "buffer.h"
43#include "log.h" 47#include "log.h"