summaryrefslogtreecommitdiff
path: root/source3/sam/get_set_group.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2002-08-29 07:19:05 +0000
committerJelmer Vernooij <jelmer@samba.org>2002-08-29 07:19:05 +0000
commitfe518a828b36a505772682e4d125cc5559dbeef6 (patch)
treeba92cfbef7d809b59ef86367947a9754642c4e6d /source3/sam/get_set_group.c
parent790b85f5e21b3dafe5dc3e7835e8f14dfd498462 (diff)
downloadsamba-fe518a828b36a505772682e4d125cc5559dbeef6.tar.gz
samba-fe518a828b36a505772682e4d125cc5559dbeef6.tar.bz2
samba-fe518a828b36a505772682e4d125cc5559dbeef6.zip
Put in patch from metze (Stefan Metzmacher) to:
- Rename user -> account - Add sam_* functions (api.c) - Several small fixes (This used to be commit eafcc387045f4f265631a952297caf3f6db779d8)
Diffstat (limited to 'source3/sam/get_set_group.c')
-rw-r--r--source3/sam/get_set_group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/sam/get_set_group.c b/source3/sam/get_set_group.c
index 51f91ada82..dac5ffca9f 100644
--- a/source3/sam/get_set_group.c
+++ b/source3/sam/get_set_group.c
@@ -31,7 +31,7 @@ NTSTATUS sam_get_group_sid(const SAM_GROUP_HANDLE *group, DOM_SID **sid)
{
if (!group || !sid) return NT_STATUS_UNSUCCESSFUL;
- *sid = &group->private.sid;
+ *sid = &(group->private.sid);
return NT_STATUS_OK;
}