summaryrefslogtreecommitdiffstats
path: root/source/smbd
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2003-06-18 15:24:10 +0000
committerSimo Sorce <idra@samba.org>2003-06-18 15:24:10 +0000
commite341e7c49f8c17a9ee30ca3fab3aa0397c1f0c7e (patch)
tree8243923c184334cca26a54612298ff16f06f7899 /source/smbd
parent37acf55b609e90d4ae1a4b6bafb6067487352cee (diff)
downloadsamba-e341e7c49f8c17a9ee30ca3fab3aa0397c1f0c7e.tar.gz
samba-e341e7c49f8c17a9ee30ca3fab3aa0397c1f0c7e.tar.xz
samba-e341e7c49f8c17a9ee30ca3fab3aa0397c1f0c7e.zip
Ok, this patch removes the privilege stuff we had in, unused, for some time.
The code was nice, but put in the wrong place (group mapping) and not supported by most of the code, thus useless. We will put back most of the code when our infrastructure will be changed so that privileges actually really make sense to be set. This is a first patch of a set to enhance all our mapping code cleaness and stability towards a sane next beta for 3.0 code base Simo.
Diffstat (limited to 'source/smbd')
-rw-r--r--source/smbd/lanman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/lanman.c b/source/smbd/lanman.c
index 98857c6d320..6976a066846 100644
--- a/source/smbd/lanman.c
+++ b/source/smbd/lanman.c
@@ -1649,7 +1649,7 @@ static BOOL api_RNetGroupEnum(connection_struct *conn,uint16 vuid, char *param,c
return False;
/* get list of domain groups SID_DOMAIN_GRP=2 */
- if(!pdb_enum_group_mapping(SID_NAME_DOM_GRP , &group_list, &num_entries, False, False)) {
+ if(!pdb_enum_group_mapping(SID_NAME_DOM_GRP , &group_list, &num_entries, False)) {
DEBUG(3,("api_RNetGroupEnum:failed to get group list"));
return False;
}