mirror of git://anongit.mindrot.org/openssh.git
- (dtucker) [openbsd-compat/bsd-misc.c] Add includes needed for select(2) on
older systems.
This commit is contained in:
parent
fe408b4826
commit
e086955531
|
@ -1,5 +1,7 @@
|
|||
20060824
|
||||
- (dtucker) [openbsd-compat/basename.c] Include errno.h.
|
||||
- (dtucker) [openbsd-compat/bsd-misc.c] Add includes needed for select(2) on
|
||||
older systems.
|
||||
|
||||
20060822
|
||||
- (dtucker) [Makefile.in] Bug #1177: fix incorrect path for sshrc in
|
||||
|
@ -5291,4 +5293,4 @@
|
|||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||
|
||||
$Id: ChangeLog,v 1.4505 2006/08/24 09:41:03 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.4506 2006/08/24 09:43:16 dtucker Exp $
|
||||
|
|
|
@ -17,8 +17,13 @@
|
|||
|
||||
#include "includes.h"
|
||||
|
||||
#ifdef HAVE_SYS_TIME_H
|
||||
# include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
#include <signal.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "xmalloc.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue