summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--openbsd-compat/bsd-misc.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index af8381fe0..338360e8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
2 - (dtucker) [openbsd-compat/basename.c] Include errno.h. 2 - (dtucker) [openbsd-compat/basename.c] Include errno.h.
3 - (dtucker) [openbsd-compat/bsd-misc.c] Add includes needed for select(2) on 3 - (dtucker) [openbsd-compat/bsd-misc.c] Add includes needed for select(2) on
4 older systems. 4 older systems.
5 - (dtucker) [openbsd-compat/bsd-misc.c] Include <sys/select.h> for select(2)
6 on POSIX systems.
5 7
620060822 820060822
7 - (dtucker) [Makefile.in] Bug #1177: fix incorrect path for sshrc in 9 - (dtucker) [Makefile.in] Bug #1177: fix incorrect path for sshrc in
@@ -5293,4 +5295,4 @@
5293 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 5295 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
5294 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 5296 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
5295 5297
5296$Id: ChangeLog,v 1.4506 2006/08/24 09:43:16 dtucker Exp $ 5298$Id: ChangeLog,v 1.4507 2006/08/24 09:45:33 dtucker Exp $
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index c6b80365c..17d731bd2 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -17,6 +17,9 @@
17 17
18#include "includes.h" 18#include "includes.h"
19 19
20#ifdef HAVE_SYS_SELECT_H
21# include <sys/select.h>
22#endif
20#ifdef HAVE_SYS_TIME_H 23#ifdef HAVE_SYS_TIME_H
21# include <sys/time.h> 24# include <sys/time.h>
22#endif 25#endif