summaryrefslogtreecommitdiff
path: root/source3/nsswitch/winbindd_proto.h
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-11-26 01:20:57 +0000
committerTim Potter <tpot@samba.org>2001-11-26 01:20:57 +0000
commit19b9f9fbaea7bc446e77426f1f1b7f2bb2c14d77 (patch)
tree153353c1106ae7af45169519c5cd280542e7b9ac /source3/nsswitch/winbindd_proto.h
parent4348dfe7afe5cfb1e60fa7b2fbbcd08e6fe299fe (diff)
downloadsamba-19b9f9fbaea7bc446e77426f1f1b7f2bb2c14d77.tar.gz
samba-19b9f9fbaea7bc446e77426f1f1b7f2bb2c14d77.tar.bz2
samba-19b9f9fbaea7bc446e77426f1f1b7f2bb2c14d77.zip
Removed bogus SAFE_FREE() call of talloced return data from
winbindd_lookup_usergroups() (This used to be commit dd2048c418da7a08bc71305491953731fc427f5a)
Diffstat (limited to 'source3/nsswitch/winbindd_proto.h')
-rw-r--r--source3/nsswitch/winbindd_proto.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_proto.h b/source3/nsswitch/winbindd_proto.h
index 78afeae94c..7c3326ce36 100644
--- a/source3/nsswitch/winbindd_proto.h
+++ b/source3/nsswitch/winbindd_proto.h
@@ -133,11 +133,14 @@ BOOL get_domain_info(void);
void free_domain_info(void);
BOOL lookup_domain_sid(char *domain_name, struct winbindd_domain *domain);
BOOL winbindd_lookup_sid_by_name(char *name, DOM_SID *sid, enum SID_NAME_USE *type);
-BOOL winbindd_lookup_name_by_sid(DOM_SID *sid, fstring name, enum SID_NAME_USE *type);
+BOOL winbindd_lookup_name_by_sid(DOM_SID *sid,
+ fstring name,
+ enum SID_NAME_USE *type);
BOOL winbindd_lookup_userinfo(struct winbindd_domain *domain,
TALLOC_CTX *mem_ctx, uint32 user_rid,
SAM_USERINFO_CTR **user_info);
BOOL winbindd_lookup_usergroups(struct winbindd_domain *domain,
+ TALLOC_CTX *mem_ctx,
uint32 user_rid, uint32 *num_groups,
DOM_GID **user_groups);
BOOL winbindd_lookup_groupmem(struct winbindd_domain *domain,