- (dtucker) [openbsd-compat/bsd-misc.c] Include <sys/select.h> for select(2)
on POSIX systems.
This commit is contained in:
parent
e086955531
commit
450d2af2a3
|
@ -2,6 +2,8 @@
|
||||||
- (dtucker) [openbsd-compat/basename.c] Include errno.h.
|
- (dtucker) [openbsd-compat/basename.c] Include errno.h.
|
||||||
- (dtucker) [openbsd-compat/bsd-misc.c] Add includes needed for select(2) on
|
- (dtucker) [openbsd-compat/bsd-misc.c] Add includes needed for select(2) on
|
||||||
older systems.
|
older systems.
|
||||||
|
- (dtucker) [openbsd-compat/bsd-misc.c] Include <sys/select.h> for select(2)
|
||||||
|
on POSIX systems.
|
||||||
|
|
||||||
20060822
|
20060822
|
||||||
- (dtucker) [Makefile.in] Bug #1177: fix incorrect path for sshrc in
|
- (dtucker) [Makefile.in] Bug #1177: fix incorrect path for sshrc in
|
||||||
|
@ -5293,4 +5295,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4506 2006/08/24 09:43:16 dtucker Exp $
|
$Id: ChangeLog,v 1.4507 2006/08/24 09:45:33 dtucker Exp $
|
||||||
|
|
|
@ -17,6 +17,9 @@
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
|
|
||||||
|
#ifdef HAVE_SYS_SELECT_H
|
||||||
|
# include <sys/select.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_SYS_TIME_H
|
#ifdef HAVE_SYS_TIME_H
|
||||||
# include <sys/time.h>
|
# include <sys/time.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue