summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:45:54 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:45:54 +1100
commitf17883e6a0f9462c8bc163cce44331862581b0cb (patch)
tree3e298f6761b40b7be32c76f529f92b1f276cb329 /auth.c
parent574c41fdb3ff4b8eb7f121b05a08f2415ec7efec (diff)
- stevesk@cvs.openbsd.org 2006/02/20 17:02:44
[clientloop.c includes.h monitor.c progressmeter.c scp.c] [serverloop.c session.c sftp.c ssh-agent.c ssh.c sshd.c] move #include <signal.h> out of includes.h; ok markus@
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/auth.c b/auth.c
index 666a2dd22..fca373b80 100644
--- a/auth.c
+++ b/auth.c
@@ -23,7 +23,10 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth.c,v 1.61 2006/02/08 12:15:27 stevesk Exp $"); 26RCSID("$OpenBSD: auth.c,v 1.62 2006/02/20 17:19:53 stevesk Exp $");
27
28#include <sys/types.h>
29#include <sys/stat.h>
27 30
28#ifdef HAVE_PATHS_H 31#ifdef HAVE_PATHS_H
29# include <paths.h> 32# include <paths.h>