summaryrefslogtreecommitdiff
path: root/source3/lib/sids.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-12-08 23:03:42 +0000
committerLuke Leighton <lkcl@samba.org>1999-12-08 23:03:42 +0000
commitd45f5cf6b055f72ad30d5ae2b2fd7f42dbab1ed2 (patch)
treed0c379c4e6487da5410a439ae509e4e1a6f234da /source3/lib/sids.c
parent6281c5d7a94d8f5bfec835aa147e7aa8bab15bb2 (diff)
downloadsamba-d45f5cf6b055f72ad30d5ae2b2fd7f42dbab1ed2.tar.gz
samba-d45f5cf6b055f72ad30d5ae2b2fd7f42dbab1ed2.tar.bz2
samba-d45f5cf6b055f72ad30d5ae2b2fd7f42dbab1ed2.zip
jerry spotted that get_domain_sids() was being called with the wrong
arguments: get_any_dc_name() was being called with a server name not a domain name. oops. (This used to be commit 631814302d6992138cfe024ba7bd456cc7e0d3bf)
Diffstat (limited to 'source3/lib/sids.c')
-rw-r--r--source3/lib/sids.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/lib/sids.c b/source3/lib/sids.c
index efbd03fbf3..712eef8a0d 100644
--- a/source3/lib/sids.c
+++ b/source3/lib/sids.c
@@ -199,8 +199,7 @@ BOOL get_member_domain_sid(void)
}
}
- return get_domain_sids(global_myname, NULL,
- &global_member_sid, lp_workgroup());
+ return get_domain_sids(lp_workgroup(), NULL, &global_member_sid);
}