summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 14:01:11 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 14:01:11 +1100
commit627725281e348dee76fa9c588923bd28247e2520 (patch)
treee0b2c59b3ded62a224267ff3427508d9bb605473
parentb3b4ba3fba90ecc80877f2dbdb2c3b50e9fce227 (diff)
downloadopenssh-git-627725281e348dee76fa9c588923bd28247e2520.tar.gz
- (djm) [loginrec.c] Need stat.h
-rw-r--r--ChangeLog3
-rw-r--r--loginrec.c5
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1628cfa8..24196157 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -251,6 +251,7 @@
- (djm) [Makefile.in openbsd-compat/Makefile.in] Add added files
- (djm) [md-sha256.c configure.ac] md-sha256.c needs sha2.h if present
- (djm) [regress/.cvsignore] Ignore Makefile here
+ - (djm) [loginrec.c] Need stat.h
20060313
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -4152,4 +4153,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.4212 2006/03/15 02:13:27 djm Exp $
+$Id: ChangeLog,v 1.4213 2006/03/15 03:01:11 djm Exp $
diff --git a/loginrec.c b/loginrec.c
index d096346e..9f9eb69a 100644
--- a/loginrec.c
+++ b/loginrec.c
@@ -147,6 +147,9 @@
#include "includes.h"
+#include <sys/types.h>
+#include <sys/stat.h>
+
#include "ssh.h"
#include "xmalloc.h"
#include "loginrec.h"
@@ -165,7 +168,7 @@
# include <libutil.h>
#endif
-RCSID("$Id: loginrec.c,v 1.71 2005/11/22 08:55:13 dtucker Exp $");
+RCSID("$Id: loginrec.c,v 1.72 2006/03/15 03:01:11 djm Exp $");
/**
** prototypes for helper functions in this file