Re: rsync-2.5.6 on BSD/OS 4.x

2003-08-20 Thread Wayne Davison
On Wed, Aug 20, 2003 at 06:43:18PM -0400, Chris Ross wrote: > Doesn't work as a server. It calls setgroups(0,0), which is > unsupported on BSD/OS. setgroups() must have at least one group set, > the primary group. Thanks for the info! I just checked in a fix for this. ..wayne.. -- To unsubscr

rsync-2.5.6 on BSD/OS 4.x

2003-08-20 Thread Chris Ross
Doesn't work as a server. It calls setgroups(0,0), which is unsupported on BSD/OS. setgroups() must have at least one group set, the primary group. Would it be a problem to replace this line of code with setgroups(1, getgid()) (Not literally, I know that won't compile, but functionally...)? T