summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--openbsd-compat/xmmap.c4
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5d86e4451..eff2102d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -55,6 +55,7 @@
55 will allow port forwarding by all users except "anoncvs". 55 will allow port forwarding by all users except "anoncvs".
56 Currently only a very small subset of directives are supported. 56 Currently only a very small subset of directives are supported.
57 ok djm@ 57 ok djm@
58 - (dtucker) [openbsd-compat/xmmap.c] Include <errno.h>.
58 59
5920060711 6020060711
60 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c 61 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
@@ -4904,4 +4905,4 @@
4904 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4905 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4905 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4906 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4906 4907
4907$Id: ChangeLog,v 1.4400 2006/07/12 12:34:17 dtucker Exp $ 4908$Id: ChangeLog,v 1.4401 2006/07/12 12:35:51 dtucker Exp $
diff --git a/openbsd-compat/xmmap.c b/openbsd-compat/xmmap.c
index 68ac91192..7d5cc812c 100644
--- a/openbsd-compat/xmmap.c
+++ b/openbsd-compat/xmmap.c
@@ -23,7 +23,7 @@
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26/* $Id: xmmap.c,v 1.7 2006/03/15 02:02:31 djm Exp $ */ 26/* $Id: xmmap.c,v 1.8 2006/07/12 12:35:52 dtucker Exp $ */
27 27
28#include "includes.h" 28#include "includes.h"
29 29
@@ -33,6 +33,8 @@
33#endif 33#endif
34#include <sys/stat.h> 34#include <sys/stat.h>
35 35
36#include <errno.h>
37
36#include "log.h" 38#include "log.h"
37 39
38void *xmmap(size_t size) 40void *xmmap(size_t size)