Re: Are there good reasons for running radiusd as user 'root'?

Maurice Makaay <[email protected]> Wed, 12 Nov 2003 13:08:29 +0100
Newsgroups gmane.comp.gnu.radius.bugs
Organization InterNLnet BV
Message-ID <[email protected]>
Hi,

There a little error in my patch. To fix this error, change

                if (exec_user.is_default) {
                        exec_user.username = estrdup(run_user.username);
                        exec_user.uid = run_user.uid;
!                       exec_user.gid = exec_user.gid;
                }

to

                if (exec_user.is_default) {
                        exec_user.username = estrdup(run_user.username);
                        exec_user.uid = run_user.uid;
!                       exec_user.gid = run_user.gid;
                }


Regards,

-- Maurice Makaay