diff options
author | Robert Griebl <griebl@gmx.de> | 2002-06-04 20:06:25 +0000 |
---|---|---|
committer | Robert Griebl <griebl@gmx.de> | 2002-06-04 20:06:25 +0000 |
commit | c9aca4561ddb1165890fae0c8b921a2504c6273f (patch) | |
tree | 584aaddcc5ef4d9e715f27e9d1d8dad98b7a5074 /include/libbb.h | |
parent | bc28f7a1e19397666e687a6a1ba38deff9fd1030 (diff) |
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]
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 40cff8b4b..0b2411fcd 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -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; |