summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-02-15 22:19:28 +1100
committerDarren Tucker <dtucker@zip.com.au>2005-02-15 22:19:28 +1100
commita39f83eeee3f7bb35e86d92f5a802fe84f1b6a9d (patch)
tree9a0b18d3619beb80b4de54f50231559dc571f47a
parent691d5235ca9485877e8345269b1be4b2cf1be322 (diff)
- (dtucker) [loginrec.c] Add missing #include.
-rw-r--r--ChangeLog3
-rw-r--r--loginrec.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9b0b3e2af..e076fc66f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@
4 openbsd-compat/port-aix.c openbsd-compat/port-aix.h] Bug #835: enable IPv6 4 openbsd-compat/port-aix.c openbsd-compat/port-aix.h] Bug #835: enable IPv6
5 on AIX where possible (see README.platform for details) and work around 5 on AIX where possible (see README.platform for details) and work around
6 a misfeature of AIX's getnameinfo. ok djm@ 6 a misfeature of AIX's getnameinfo. ok djm@
7 - (dtucker) [loginrec.c] Add missing #include.
7 8
820050211 920050211
9 - (dtucker) [configure.ac] Tidy up configure --help output. 10 - (dtucker) [configure.ac] Tidy up configure --help output.
@@ -2130,4 +2131,4 @@
2130 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 2131 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
2131 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 2132 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
2132 2133
2133$Id: ChangeLog,v 1.3652 2005/02/15 10:45:57 dtucker Exp $ 2134$Id: ChangeLog,v 1.3653 2005/02/15 11:19:28 dtucker Exp $
diff --git a/loginrec.c b/loginrec.c
index 8f5061cdc..361ac4cb7 100644
--- a/loginrec.c
+++ b/loginrec.c
@@ -155,6 +155,7 @@
155#include "packet.h" 155#include "packet.h"
156#include "canohost.h" 156#include "canohost.h"
157#include "auth.h" 157#include "auth.h"
158#include "buffer.h"
158 159
159#ifdef HAVE_UTIL_H 160#ifdef HAVE_UTIL_H
160# include <util.h> 161# include <util.h>
@@ -164,7 +165,7 @@
164# include <libutil.h> 165# include <libutil.h>
165#endif 166#endif
166 167
167RCSID("$Id: loginrec.c,v 1.66 2005/02/15 10:45:57 dtucker Exp $"); 168RCSID("$Id: loginrec.c,v 1.67 2005/02/15 11:19:28 dtucker Exp $");
168 169
169/** 170/**
170 ** prototypes for helper functions in this file 171 ** prototypes for helper functions in this file