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)
- (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 1628cfa8f..241961575 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -251,6 +251,7 @@
251 - (djm) [Makefile.in openbsd-compat/Makefile.in] Add added files 251 - (djm) [Makefile.in openbsd-compat/Makefile.in] Add added files
252 - (djm) [md-sha256.c configure.ac] md-sha256.c needs sha2.h if present 252 - (djm) [md-sha256.c configure.ac] md-sha256.c needs sha2.h if present
253 - (djm) [regress/.cvsignore] Ignore Makefile here 253 - (djm) [regress/.cvsignore] Ignore Makefile here
254 - (djm) [loginrec.c] Need stat.h
254 255
25520060313 25620060313
256 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong) 257 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -4152,4 +4153,4 @@
4152 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4153 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4153 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4154 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4154 4155
4155$Id: ChangeLog,v 1.4212 2006/03/15 02:13:27 djm Exp $ 4156$Id: ChangeLog,v 1.4213 2006/03/15 03:01:11 djm Exp $
diff --git a/loginrec.c b/loginrec.c
index d096346ec..9f9eb69a7 100644
--- a/loginrec.c
+++ b/loginrec.c
@@ -147,6 +147,9 @@
147 147
148#include "includes.h" 148#include "includes.h"
149 149
150#include <sys/types.h>
151#include <sys/stat.h>
152
150#include "ssh.h" 153#include "ssh.h"
151#include "xmalloc.h" 154#include "xmalloc.h"
152#include "loginrec.h" 155#include "loginrec.h"
@@ -165,7 +168,7 @@
165# include <libutil.h> 168# include <libutil.h>
166#endif 169#endif
167 170
168RCSID("$Id: loginrec.c,v 1.71 2005/11/22 08:55:13 dtucker Exp $"); 171RCSID("$Id: loginrec.c,v 1.72 2006/03/15 03:01:11 djm Exp $");
169 172
170/** 173/**
171 ** prototypes for helper functions in this file 174 ** prototypes for helper functions in this file