In message <pine.bsf.4.05.9905151255160.5798-100...@arnold.neland.dk>, Leif Nel and writes:
>It won't compile under current. >freebsd/skip_es.c breaks at > > if (suser(p->p_ucred, &p->p_acflag )) { > >This won't compile, because suser only has one parameter. > >Trying blindly to change it to: > > if (suser(p->p_ucred)) { Better yet, read the manpage for suser(9) and change it to: if (suser(p)) { -- Poul-Henning Kamp FreeBSD coreteam member p...@freebsd.org "Real hackers run -current on their laptop." FreeBSD -- It will take a long time before progress goes too far! To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-current" in the body of the message