diff options
author | Günther Deschner <gd@samba.org> | 2011-03-24 14:16:28 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-30 01:13:09 +0200 |
commit | 4bd5f51c43147b74203711764390727bdda17a77 (patch) | |
tree | b9bd78951a8b9e8a5a7f20f37152148ea41cdea2 /source3/auth | |
parent | 3679c0b8c101f9652858ea74a71556cdcdc88cb3 (diff) | |
download | samba-4bd5f51c43147b74203711764390727bdda17a77.tar.gz samba-4bd5f51c43147b74203711764390727bdda17a77.tar.bz2 samba-4bd5f51c43147b74203711764390727bdda17a77.zip |
s3-prototyes: user_in_netgroup and user_in_list moved to auth, out of smbd.
Guenther
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/auth/proto.h b/source3/auth/proto.h index 585c413c14..88cc7074ed 100644 --- a/source3/auth/proto.h +++ b/source3/auth/proto.h @@ -243,6 +243,8 @@ void debug_unix_user_token(int dbg_class, int dbg_lev, uid_t uid, gid_t gid, /* The following definitions come from auth/user_util.c */ bool map_username(TALLOC_CTX *ctx, const char *user_in, char **p_user_out); +bool user_in_netgroup(TALLOC_CTX *ctx, const char *user, const char *ngname); +bool user_in_list(TALLOC_CTX *ctx, const char *user,const char **list); /* The following definitions come from auth/user_krb5.c */ struct PAC_LOGON_INFO; |