- (dtucker) [openbsd-compat/{bsd-arc4random.c,port-tun.c,xmmap.c}] Lots of
#include stdarg.h, needed for log.h.
This commit is contained in:
parent
8c6fedaf22
commit
e7eec90f38
|
@ -98,6 +98,8 @@
|
|||
includes for Linux in
|
||||
- (dtucker) [cleanup.c] Need defines.h for __dead.
|
||||
- (dtucker) [auth2-gss.c] We still need the #ifdef GSSAPI in -portable.
|
||||
- (dtucker) [openbsd-compat/{bsd-arc4random.c,port-tun.c,xmmap.c}] Lots of
|
||||
#include stdarg.h, needed for log.h.
|
||||
|
||||
20060804
|
||||
- (dtucker) [configure.ac] The "crippled AES" test does not work on recent
|
||||
|
@ -5168,4 +5170,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.4460 2006/08/05 05:24:59 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.4461 2006/08/05 05:47:26 dtucker Exp $
|
||||
|
|
|
@ -17,7 +17,9 @@
|
|||
#include "includes.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "log.h"
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/* $Id: xmmap.c,v 1.10 2006/07/25 09:52:08 dtucker Exp $ */
|
||||
/* $Id: xmmap.c,v 1.11 2006/08/05 05:47:27 dtucker Exp $ */
|
||||
|
||||
#include "includes.h"
|
||||
|
||||
|
@ -32,11 +32,12 @@
|
|||
#include <sys/mman.h>
|
||||
#endif
|
||||
#include <sys/stat.h>
|
||||
|
||||
#ifdef HAVE_FCNTL_H
|
||||
# include <fcntl.h>
|
||||
#endif
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue