diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-06-18 16:47:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:57:20 -0500 |
commit | e6ef7ba7a4bc79dbc98119abc5cb9bd72d43c2a4 (patch) | |
tree | 73be1956164f4bc82b37b461c9203328fc02b293 | |
parent | 5b08e6688edf8a297ff374b4675ac95c97a3d6a1 (diff) | |
download | samba-e6ef7ba7a4bc79dbc98119abc5cb9bd72d43c2a4.tar.gz samba-e6ef7ba7a4bc79dbc98119abc5cb9bd72d43c2a4.tar.bz2 samba-e6ef7ba7a4bc79dbc98119abc5cb9bd72d43c2a4.zip |
r7730: Some merges
(This used to be commit 5b4720598b4c7f4af1027a181fbe9c1568e71361)
-rw-r--r-- | source3/passdb/passdb.c | 26 |
1 files changed, 4 insertions, 22 deletions
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c index 146b3d7a2d..1dd8893c1c 100644 --- a/source3/passdb/passdb.c +++ b/source3/passdb/passdb.c @@ -832,8 +832,6 @@ BOOL local_lookup_sid(const DOM_SID *sid, char *name, enum SID_NAME_USE *psid_na gid = pdb_group_rid_to_gid(rid); gr = getgrgid(gid); - *psid_name_use = SID_NAME_ALIAS; - DEBUG(5,("local_lookup_sid: looking up gid %u %s\n", (unsigned int)gid, gr ? "succeeded" : "failed" )); @@ -1223,24 +1221,6 @@ BOOL local_sid_to_uid(uid_t *puid, const DOM_SID *psid, enum SID_NAME_USE *name_ } /**************************************************************************** - Convert a gid to SID - algorithmic. -****************************************************************************/ - -DOM_SID *algorithmic_gid_to_sid(DOM_SID *psid, uid_t gid) -{ - if ( !lp_enable_rid_algorithm() ) - return NULL; - - DEBUG(8,("algorithmic_gid_to_sid: falling back to RID algorithm\n")); - sid_copy( psid, get_global_sam_sid() ); - sid_append_rid( psid, pdb_gid_to_group_rid(gid) ); - DEBUG(10,("algorithmic_gid_to_sid: gid (%d) -> SID %s.\n", - (unsigned int)gid, sid_string_static(psid) )); - - return psid; -} - -/**************************************************************************** Convert a gid to SID - locally. ****************************************************************************/ @@ -1260,14 +1240,16 @@ DOM_SID *local_gid_to_sid(DOM_SID *psid, gid_t gid) if ( !ret ) { - /* algorithmic to rid mapping if enabled */ + /* fallback to rid mapping if enabled */ if ( lp_enable_rid_algorithm() ) { + sid_copy(psid, get_global_sam_sid()); + sid_append_rid(psid, pdb_gid_to_group_rid(gid)); DEBUG(10,("local_gid_to_sid: Fall back to algorithmic mapping: %u -> %s\n", (unsigned int)gid, sid_string_static(psid))); - return algorithmic_gid_to_sid(psid, gid); + return psid; } else return NULL; |