aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-02-26 22:47:42 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-02-26 22:47:42 +0000
commitcce38586aee7fe892ca1c837ee08a96bd3454ee9 (patch)
tree2cce1db0f921fdc3e899641dd9c59f459ce4b07d /include/libbb.h
parentf8ea0f3a66559a00c41fd7877bdc241973a60f8c (diff)
downloadbusybox-w32-cce38586aee7fe892ca1c837ee08a96bd3454ee9.tar.gz
busybox-w32-cce38586aee7fe892ca1c837ee08a96bd3454ee9.tar.bz2
busybox-w32-cce38586aee7fe892ca1c837ee08a96bd3454ee9.zip
start_stop_daemon: add -chuid support
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index a32e6154c..4293ae269 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -443,7 +443,10 @@ struct bb_uidgid_t {
443 uid_t uid; 443 uid_t uid;
444 gid_t gid; 444 gid_t gid;
445}; 445};
446/* always sets uid and gid */
446int get_uidgid(struct bb_uidgid_t*, const char*, int numeric_ok); 447int get_uidgid(struct bb_uidgid_t*, const char*, int numeric_ok);
448/* chown-like handling of "user[:[group]" */
449void parse_chown_usergroup_or_die(struct bb_uidgid_t *u, char *user_group);
447/* what is this? */ 450/* what is this? */
448/*extern char *bb_getug(char *buffer, char *idname, long id, int bufsize, char prefix);*/ 451/*extern char *bb_getug(char *buffer, char *idname, long id, int bufsize, char prefix);*/
449char *bb_getpwuid(char *name, long uid, int bufsize); 452char *bb_getpwuid(char *name, long uid, int bufsize);