summaryrefslogtreecommitdiff
path: root/clientloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'clientloop.c')
-rw-r--r--clientloop.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/clientloop.c b/clientloop.c
index 0c700dbd4..e38089c1e 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: clientloop.c,v 1.170 2006/07/22 20:48:22 stevesk Exp $ */ 1/* $OpenBSD: clientloop.c,v 1.171 2006/07/25 02:59:21 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -62,11 +62,14 @@
62#include "includes.h" 62#include "includes.h"
63 63
64#include <sys/types.h> 64#include <sys/types.h>
65#include <sys/ioctl.h>
65#ifdef HAVE_SYS_STAT_H 66#ifdef HAVE_SYS_STAT_H
66# include <sys/stat.h> 67# include <sys/stat.h>
67#endif 68#endif
69#ifdef HAVE_SYS_TIME_H
70# include <sys/time.h>
71#endif
68#include <sys/socket.h> 72#include <sys/socket.h>
69#include <sys/ioctl.h>
70 73
71#include <ctype.h> 74#include <ctype.h>
72#include <errno.h> 75#include <errno.h>