summaryrefslogtreecommitdiff
path: root/source3/nsswitch/winbindd.h
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2004-03-10 16:32:58 +0000
committerVolker Lendecke <vlendec@samba.org>2004-03-10 16:32:58 +0000
commit8240abca9564a87feff1783739a03bb708610271 (patch)
tree8ca79917b0c5f41790f988e53f89dc756cf11685 /source3/nsswitch/winbindd.h
parentfaab4f3c27d994add8691817c2ec965e459fce96 (diff)
downloadsamba-8240abca9564a87feff1783739a03bb708610271.tar.gz
samba-8240abca9564a87feff1783739a03bb708610271.tar.bz2
samba-8240abca9564a87feff1783739a03bb708610271.zip
Apply some const
(This used to be commit e2696b81bb5e4d12281cf99dc50f91844ae51c2e)
Diffstat (limited to 'source3/nsswitch/winbindd.h')
-rw-r--r--source3/nsswitch/winbindd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/nsswitch/winbindd.h b/source3/nsswitch/winbindd.h
index 340ea07733..cece2b40de 100644
--- a/source3/nsswitch/winbindd.h
+++ b/source3/nsswitch/winbindd.h
@@ -167,7 +167,7 @@ struct winbindd_methods {
/* lookup user info for a given SID */
NTSTATUS (*query_user)(struct winbindd_domain *domain,
TALLOC_CTX *mem_ctx,
- DOM_SID *user_sid,
+ const DOM_SID *user_sid,
WINBIND_USERINFO *user_info);
/* lookup all groups that a user is a member of. The backend
@@ -175,13 +175,13 @@ struct winbindd_methods {
function */
NTSTATUS (*lookup_usergroups)(struct winbindd_domain *domain,
TALLOC_CTX *mem_ctx,
- DOM_SID *user_sid,
+ const DOM_SID *user_sid,
uint32 *num_groups, DOM_SID ***user_gids);
/* find all members of the group with the specified group_rid */
NTSTATUS (*lookup_groupmem)(struct winbindd_domain *domain,
TALLOC_CTX *mem_ctx,
- DOM_SID *group_sid,
+ const DOM_SID *group_sid,
uint32 *num_names,
DOM_SID ***sid_mem, char ***names,
uint32 **name_types);