Subject: Re: openssh3.3p1 on solaris2.6
To: IWAMOTO Toshihiro <iwamoto@sat.t.u-tokyo.ac.jp>
From: None <itojun@iijlab.net>
List: tech-pkg
Date: 06/25/2002 23:38:06
>I'm using Zoularis on Solaris2.6. I noticed the following diff is
>necessary to use compression and priviledge separation, because
>it doesn't have MAP_ANON.
>Does this diff look OK? I'd like to commit it shortly.
I think you need to differentiate the following 3 cases:
HAVE_MMAP && MAP_ANON
HAVE_MMAP && !MAP_ANON
!HAVE_MMAP
the attached patch mixed up the following two cases, and used mmap()
even if !HAVE_MMAP.
itojun