summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2002-10-17 08:12:20 +0000
committerVolker Lendecke <vlendec@samba.org>2002-10-17 08:12:20 +0000
commit8cb53d56f21f5a33d7dc55e7bd7cd559a112ac52 (patch)
tree13f15ee8f4d08f247760fe4a08ef69527fb6ae62 /source3
parent41a427b6ba3265e52e8fbcd95242dc354b279190 (diff)
downloadsamba-8cb53d56f21f5a33d7dc55e7bd7cd559a112ac52.tar.gz
samba-8cb53d56f21f5a33d7dc55e7bd7cd559a112ac52.tar.bz2
samba-8cb53d56f21f5a33d7dc55e7bd7cd559a112ac52.zip
Revert changes
(This used to be commit 975fd17f8af0f03f43995deb3fdd9bd5995a1c92)
Diffstat (limited to 'source3')
-rw-r--r--source3/groupdb/mapping.c40
-rw-r--r--source3/passdb/passdb.c2
2 files changed, 17 insertions, 25 deletions
diff --git a/source3/groupdb/mapping.c b/source3/groupdb/mapping.c
index d78582e7e5..0f05316949 100644
--- a/source3/groupdb/mapping.c
+++ b/source3/groupdb/mapping.c
@@ -1048,42 +1048,34 @@ Returns a GROUP_MAP struct based on the gid.
BOOL get_group_from_gid(gid_t gid, GROUP_MAP *map, BOOL with_priv)
{
struct group *grp;
- fstring name;
- DOM_SID sid;
- fstring string_sid;
- PRIVILEGE_SET priv_set;
if(!init_group_mapping()) {
DEBUG(0,("failed to initialize group mapping"));
return(False);
}
- if (get_group_map_from_gid(gid, map, with_priv))
- return True;
-
- /* There is no mapping, create one on the fly. This is just
- interim, we need a RID allocator in the passdb backend. */
+ if ( (grp=getgrgid(gid)) == NULL)
+ return False;
- if ((grp=getgrgid(gid)) != NULL) {
- slprintf(name, sizeof(name), "Group %s", grp->gr_name);
- } else {
- slprintf(name, sizeof(name), "Group %d", gid);
- }
+ /*
+ * make a group map from scratch if doesn't exist.
+ */
+ if (!get_group_map_from_gid(gid, map, with_priv)) {
+ map->gid=gid;
+ map->sid_name_use=SID_NAME_ALIAS;
+ map->systemaccount=PR_ACCESS_FROM_NETWORK;
+ init_privilege(&map->priv_set);
- /* interim solution until we have a last RID allocated */
+ /* interim solution until we have a last RID allocated */
- sid_copy(&sid, get_global_sam_sid());
- sid_append_rid(&sid, pdb_gid_to_group_rid(gid));
- sid_to_string(string_sid, &sid);
- init_privilege(&priv_set);
+ sid_copy(&map->sid, get_global_sam_sid());
+ sid_append_rid(&map->sid, pdb_gid_to_group_rid(gid));
- if (!add_initial_entry(gid, string_sid, SID_NAME_DOM_GRP,
- name, "Local Unix Group",
- priv_set, PR_ACCESS_FROM_NETWORK)) {
- return False;
+ fstrcpy(map->nt_name, grp->gr_name);
+ fstrcpy(map->comment, "Local Unix Group");
}
- return get_group_map_from_gid(gid, map, with_priv);
+ return True;
}
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c
index dfaf7c88be..9402f0c94c 100644
--- a/source3/passdb/passdb.c
+++ b/source3/passdb/passdb.c
@@ -897,7 +897,7 @@ DOM_SID *local_gid_to_sid(DOM_SID *psid, gid_t gid)
sid_copy(psid, get_global_sam_sid());
- if (get_group_from_gid(gid, &map, MAPPING_WITHOUT_PRIV)) {
+ if (get_group_map_from_gid(gid, &map, MAPPING_WITHOUT_PRIV)) {
sid_copy(psid, &map.sid);
}
else {