This is the mail archive of the cygwin-apps@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: apache-1.3.22-4 no-detach patch


On Tue, Jan 22, 2002 at 11:53:11AM +0100, Stipe Tolj wrote:
> Corinna Vinschen wrote:
> > 
> > Ok, as far as I can see, the problem is line 4136f. in http_main.c:
> > 
> >     /* Only try to switch if we're running as root */
> >     if (!geteuid() && (
> > 
> > That could get changed to (just a draft):
> > 
> >   #ifdef CYGWIN
> >     /* Only try to switch if we're running as SYSTEM */
> >     #define SYSTEM_UID 18
> >     if (geteuid() == SYSTEM_UID && (
> >   #else
> >     /* Only try to switch if we're running as root */
> >     if (!geteuid() && (
> >   #endif
> 
> thanks for that report Corinna. I'm fixing things up this evening and
> preparing -4 for distribution.
> 
> Stipe

*knock* *knock* 

Is -4 ready to go, Stipe?

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:cygwin@cygwin.com
Red Hat, Inc.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]