mirror of git://anongit.mindrot.org/openssh.git
- (bal) disable privsep if no MAP_ANON. We can re-enable it
after the release when we can do more testing.
This commit is contained in:
parent
c42f7cfd16
commit
927dfd2d7e
|
@ -4,6 +4,8 @@
|
|||
to -h on testing for /bin being symbolic link
|
||||
- (bal) Mistaken in Cygwin scripts for ssh starting. Patch by
|
||||
Corinna Vinschen <vinschen@redhat.com>
|
||||
- (bal) disable privsep if no MAP_ANON. We can re-enable it
|
||||
after the release when we can do more testing.
|
||||
|
||||
20020411
|
||||
- (stevesk) [auth-sia.c] cleanup
|
||||
|
@ -8229,4 +8231,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.2049 2002/04/12 17:44:13 mouring Exp $
|
||||
$Id: ChangeLog,v 1.2050 2002/04/12 18:51:22 mouring Exp $
|
||||
|
|
|
@ -84,7 +84,7 @@ mm_create(struct mm_master *mmalloc, size_t size)
|
|||
*/
|
||||
mm->mmalloc = mmalloc;
|
||||
|
||||
#ifdef HAVE_MMAP
|
||||
#if defined(HAVE_MMAP) && defined(MAP_ANON)
|
||||
address = mmap(NULL, size, PROT_WRITE|PROT_READ, MAP_ANON|MAP_SHARED,
|
||||
-1, 0);
|
||||
if (address == MAP_FAILED)
|
||||
|
|
Loading…
Reference in New Issue