Implement two types of suid/sgid support for BusyBox:

1) tinylogin like with compile time selection and a chown root.root
2) Runtime configurable via /etc/busybox.conf (docu is in the works)
[Parts of this patch may overlap with my other two patches]
This commit is contained in:
Robert Griebl
2002-06-04 20:06:25 +00:00
parent bc28f7a1e1
commit c9aca4561d
5 changed files with 491 additions and 180 deletions

View File

@ -37,6 +37,8 @@
#include <features.h>
#include "config.h"
#if (__GNU_LIBRARY__ < 5) && (!defined __dietlibc__)
/* libc5 doesn't define socklen_t */
typedef unsigned int socklen_t;