diff --git a/ChangeLog b/ChangeLog index fbecc3dd1..71800d957 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 17d731bd2..bea3144bd 100644 --- a/openbsd-compat/bsd-misc.c +++ b/openbsd-compat/bsd-misc.c @@ -17,6 +17,7 @@ #include "includes.h" +#include #ifdef HAVE_SYS_SELECT_H # include #endif @@ -27,6 +28,7 @@ #include #include #include +#include #include "xmalloc.h"