summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2002-07-18 11:34:29 -0700
committerTim Rice <tim@multitalents.net>2002-07-18 11:34:29 -0700
commit76645849d3c73b974a44393e9b0bbec46e0ab4c4 (patch)
treef33762aa6ba67b59ea0c486046cbe1665ecbefbf
parentb8b23047f84094815d93febb41454c34666f9dd0 (diff)
[monitor_mm.c] add missing declaration for xmmap(). Reported
by ayamura@ayamura.org
-rw-r--r--ChangeLog8
-rw-r--r--monitor_mm.c1
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 86050bb8f..25fe3eac2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,12 @@
120020718
2 - (tim) [defines.h] Bug 313 patch by dirk.meyer@dinoex.sub.org
3 - (tim) [monitor_mm.c] add missing declaration for xmmap(). Reported
4 by ayamura@ayamura.org
5
120020717 620020717
2 - (bal) aixbff package updated by dtucker@zip.com.au 7 - (bal) aixbff package updated by dtucker@zip.com.au
3 - (tim) [configure.ac] change how we do paths in AC_PATH_PROGS tests 8 - (tim) [configure.ac] change how we do paths in AC_PATH_PROGS tests
4 for autoconf 2.53. Based on a patch by jrj@purdue.edu 9 for autoconf 2.53. Based on a patch by jrj@purdue.edu
5 - (tim) [defines.h] Bug 313 patch by dirk.meyer@dinoex.sub.org
6 10
720020716 1120020716
8 - (tim) [contrib/solaris/opensshd.in] Only kill sshd if .pid file found 12 - (tim) [contrib/solaris/opensshd.in] Only kill sshd if .pid file found
@@ -1383,4 +1387,4 @@
1383 - (stevesk) entropy.c: typo in debug message 1387 - (stevesk) entropy.c: typo in debug message
1384 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1388 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1385 1389
1386$Id: ChangeLog,v 1.2374 2002/07/18 16:31:51 tim Exp $ 1390$Id: ChangeLog,v 1.2375 2002/07/18 18:34:29 tim Exp $
diff --git a/monitor_mm.c b/monitor_mm.c
index fb5f2c82c..c0e141343 100644
--- a/monitor_mm.c
+++ b/monitor_mm.c
@@ -28,6 +28,7 @@ RCSID("$OpenBSD: monitor_mm.c,v 1.7 2002/06/28 01:49:31 millert Exp $");
28 28
29#ifdef HAVE_SYS_MMAN_H 29#ifdef HAVE_SYS_MMAN_H
30#include <sys/mman.h> 30#include <sys/mman.h>
31void *xmmap(size_t);
31#endif 32#endif
32 33
33#include "ssh.h" 34#include "ssh.h"