- (djm) [platform.c] Some missing includes that show up under -Werror

This commit is contained in:
Damien Miller 2011-01-11 17:02:23 +11:00
Родитель 076a3b9ced
Коммит 81ad4b1fc0
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,7 @@
20110111
- (tim) [regress/host-expand.sh] Fix for building outside of read only
source tree.
- (djm) [platform.c] Some missing includes that show up under -Werror
20110109
- (djm) [Makefile.in] list ssh_host_ecdsa key in PATHSUBS; spotted by

Просмотреть файл

@ -1,4 +1,4 @@
/* $Id: platform.c,v 1.17 2010/11/23 23:09:13 dtucker Exp $ */
/* $Id: platform.c,v 1.18 2011/01/11 06:02:25 djm Exp $ */
/*
* Copyright (c) 2006 Darren Tucker. All rights reserved.
@ -26,6 +26,10 @@
#include "log.h"
#include "buffer.h"
#include "servconf.h"
#include "key.h"
#include "hostfile.h"
#include "auth.h"
#include "auth-pam.h"
#include "platform.h"
#include "openbsd-compat/openbsd-compat.h"