diff options
author | Gregor Beck <gbeck@sernet.de> | 2011-02-18 14:45:14 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-02-28 12:58:43 +0100 |
commit | 6710561c273643af27c6f06a3fe7bacdb4a2f95e (patch) | |
tree | 8752ff9566a2303bcc8c7e284684ec5f6ffee77c /source3/include | |
parent | 01e76110501785a65387c360fcfee85fbf3a4fde (diff) | |
download | samba-6710561c273643af27c6f06a3fe7bacdb4a2f95e.tar.gz samba-6710561c273643af27c6f06a3fe7bacdb4a2f95e.tar.bz2 samba-6710561c273643af27c6f06a3fe7bacdb4a2f95e.zip |
s3: add functions to remove entries from idmap memcache
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 6f4f0fc7bb..43426795de 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -3631,6 +3631,9 @@ NTSTATUS get_primary_group_sid(TALLOC_CTX *mem_ctx, const char *username, struct passwd **_pwd, struct dom_sid **_group_sid); +bool delete_uid_cache(uid_t uid); +bool delete_gid_cache(gid_t gid); +bool delete_sid_cache(const struct dom_sid* psid); void flush_uid_cache(void); void flush_gid_cache(void); |