From bb1d541da10ca35f7bfc22e9c5e735d8ed01bb49 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 2 May 2012 10:44:16 +0200 Subject: [PATCH] s3-idmap: remove (now) unused function idmap_cache_set_sid2both() Signed-off-by: Michael Adam --- source3/lib/idmap_cache.c | 24 ------------------------ source3/lib/idmap_cache.h | 1 - 2 files changed, 25 deletions(-) diff --git a/source3/lib/idmap_cache.c b/source3/lib/idmap_cache.c index 6bba5b0551d..773579bd14f 100644 --- a/source3/lib/idmap_cache.c +++ b/source3/lib/idmap_cache.c @@ -369,30 +369,6 @@ void idmap_cache_set_sid2gid(const struct dom_sid *sid, gid_t gid) return; } - -/** - * Store a mapping in the idmap cache - * @param[in] sid the sid to map - * @param[in] gid the gid to map - * - * If both parameters are valid values, then a positive mapping in both - * directions is stored. If "is_null_sid(sid)" is true, then this will be a - * negative mapping of gid, we want to cache that for this gid we could not - * find anything. Likewise if "gid==-1", then we want to cache that we did not - * find a mapping for the sid passed here. - */ - -void idmap_cache_set_sid2both(const struct dom_sid *sid, gid_t gid) -{ - struct unixid id; - id.type = ID_TYPE_BOTH; - id.id = gid; - - idmap_cache_set_sid2unixid(sid, &id); - return; -} - - static char* key_xid2sid_str(TALLOC_CTX* mem_ctx, char t, const char* id) { return talloc_asprintf(mem_ctx, "IDMAP/%cID2SID/%s", t, id); } diff --git a/source3/lib/idmap_cache.h b/source3/lib/idmap_cache.h index afb8c169403..088526635e6 100644 --- a/source3/lib/idmap_cache.h +++ b/source3/lib/idmap_cache.h @@ -34,7 +34,6 @@ bool idmap_cache_find_gid2sid(gid_t gid, struct dom_sid *sid, bool *expired); void idmap_cache_set_sid2unixid(const struct dom_sid *sid, struct unixid *unix_id); void idmap_cache_set_sid2uid(const struct dom_sid *sid, uid_t uid); void idmap_cache_set_sid2gid(const struct dom_sid *sid, gid_t gid); -void idmap_cache_set_sid2both(const struct dom_sid *sid, uid_t uid); bool idmap_cache_del_uid(uid_t uid); bool idmap_cache_del_gid(gid_t gid); -- 2.34.1