diff options
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 9a8cf67756..3e4655eeb5 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1033,6 +1033,9 @@ bool nt_time_is_set(const NTTIME *nt); /* The following definitions come from lib/username.c */ +struct passwd *tcopy_passwd(TALLOC_CTX *mem_ctx, const struct passwd *from) ; +void flush_pwnam_cache(void); +struct passwd *getpwuid_alloc(TALLOC_CTX *mem_ctx, uid_t uid) ; char *get_user_home_dir(TALLOC_CTX *mem_ctx, const char *user); struct passwd *Get_Pwnam_alloc(TALLOC_CTX *mem_ctx, const char *user); @@ -1221,13 +1224,6 @@ NTSTATUS merge_nt_token(TALLOC_CTX *mem_ctx, struct security_token **token_out); bool token_sid_in_ace(const struct security_token *token, const struct security_ace *ace); -/* The following definitions come from lib/util_pw.c */ - -struct passwd *tcopy_passwd(TALLOC_CTX *mem_ctx, const struct passwd *from) ; -void flush_pwnam_cache(void); -struct passwd *getpwnam_alloc(TALLOC_CTX *mem_ctx, const char *name); -struct passwd *getpwuid_alloc(TALLOC_CTX *mem_ctx, uid_t uid) ; - /* The following definitions come from ..libcli/registry/util_reg.c */ const char *str_regtype(int type); |