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

[EMAIL PROTECTED]
-------------------------------------------------------------------
Wapme Systems AG

M�nsterstr. 248
40470 D�sseldorf

Tel: +49-211-74845-0
Fax: +49-211-74845-299

E-Mail: [EMAIL PROTECTED]
Internet: http://www.wapme-systems.de
-------------------------------------------------------------------
wapme.net - wherever you are

Reply via email to