X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/837cbad97f0ae1c6707e170005c036ee6658cb12..067669dac74abfa2acaaef6b1d078d861814e100:/clientserver.c diff --git a/clientserver.c b/clientserver.c index f0bb5d4f..7f85432d 100644 --- a/clientserver.c +++ b/clientserver.c @@ -344,16 +344,6 @@ static int rsync_module(int f_in, int f_out, int i) } if (am_root) { -#ifdef HAVE_SETGROUPS - /* Get rid of any supplementary groups this process - * might have inheristed. */ - if (setgroups(0, NULL)) { - rsyserr(FERROR, errno, "setgroups failed"); - io_printf(f_out, "@ERROR: setgroups failed\n"); - return -1; - } -#endif - /* XXXX: You could argue that if the daemon is started * by a non-root user and they explicitly specify a * gid, then we should try to change to that gid -- @@ -369,6 +359,15 @@ static int rsync_module(int f_in, int f_out, int i) io_printf(f_out, "@ERROR: setgid failed\n"); return -1; } +#ifdef HAVE_SETGROUPS + /* Get rid of any supplementary groups this process + * might have inheristed. */ + if (setgroups(1, &gid)) { + rsyserr(FERROR, errno, "setgroups failed"); + io_printf(f_out, "@ERROR: setgroups failed\n"); + return -1; + } +#endif if (setuid(uid)) { rsyserr(FERROR, errno, "setuid %d failed", (int) uid);