diff options
Diffstat (limited to 'loginrec.c')
-rw-r--r-- | loginrec.c | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/loginrec.c b/loginrec.c index d096346ec..e59127747 100644 --- a/loginrec.c +++ b/loginrec.c | |||
@@ -147,8 +147,26 @@ | |||
147 | 147 | ||
148 | #include "includes.h" | 148 | #include "includes.h" |
149 | 149 | ||
150 | #include "ssh.h" | 150 | #include <sys/types.h> |
151 | #include <sys/stat.h> | ||
152 | #include <sys/socket.h> | ||
153 | |||
154 | #include <netinet/in.h> | ||
155 | |||
156 | #include <errno.h> | ||
157 | #include <fcntl.h> | ||
158 | #ifdef HAVE_PATHS_H | ||
159 | # include <paths.h> | ||
160 | #endif | ||
161 | #include <pwd.h> | ||
162 | #include <stdarg.h> | ||
163 | #include <string.h> | ||
164 | #include <unistd.h> | ||
165 | |||
151 | #include "xmalloc.h" | 166 | #include "xmalloc.h" |
167 | #include "key.h" | ||
168 | #include "hostfile.h" | ||
169 | #include "ssh.h" | ||
152 | #include "loginrec.h" | 170 | #include "loginrec.h" |
153 | #include "log.h" | 171 | #include "log.h" |
154 | #include "atomicio.h" | 172 | #include "atomicio.h" |
@@ -165,8 +183,6 @@ | |||
165 | # include <libutil.h> | 183 | # include <libutil.h> |
166 | #endif | 184 | #endif |
167 | 185 | ||
168 | RCSID("$Id: loginrec.c,v 1.71 2005/11/22 08:55:13 dtucker Exp $"); | ||
169 | |||
170 | /** | 186 | /** |
171 | ** prototypes for helper functions in this file | 187 | ** prototypes for helper functions in this file |
172 | **/ | 188 | **/ |