summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2007-04-29 12:06:55 +1000
committerDarren Tucker <dtucker@zip.com.au>2007-04-29 12:06:55 +1000
commit781e7a28d0376af76bae27495bac5054510688b1 (patch)
tree401eff219ea78115c0f84b71d5a2e8942c09c5ef
parent2a3868589b2c7a7893f08d254f1c8fd0b23098a5 (diff)
downloadopenssh-git-781e7a28d0376af76bae27495bac5054510688b1.tar.gz
- (dtucker) [openbsd-compat/bsd-misc.c] Include unistd.h and sys/types.h
for select(2) prototype.
-rw-r--r--ChangeLog6
-rw-r--r--openbsd-compat/bsd-misc.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fbecc3dd..71800d95 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20070429
+ - (dtucker) [openbsd-compat/bsd-misc.c] Include unistd.h and sys/types.h
+ for select(2) prototype.
+
20070406
- (dtucker) [INSTALL] Update the systems that have PAM as standard. Link
to OpenPAM too.
@@ -2878,4 +2882,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
-$Id: ChangeLog,v 1.4651 2007/04/06 02:25:08 dtucker Exp $
+$Id: ChangeLog,v 1.4652 2007/04/29 02:06:55 dtucker Exp $
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 17d731bd..bea3144b 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -17,6 +17,7 @@
#include "includes.h"
+#include <sys/types.h>
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
@@ -27,6 +28,7 @@
#include <string.h>
#include <signal.h>
#include <stdlib.h>
+#include <unistd.h>
#include "xmalloc.h"