summaryrefslogtreecommitdiff
path: root/source3/torture/pdbtest.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-08-17 12:18:14 +0200
committerVolker Lendecke <vl@samba.org>2011-08-17 12:30:08 +0200
commit8fd5e0ff2e08288d499556b5b48dcc7a9a3fc85f (patch)
tree1413c297fb202de35eedb1f5a6bef7bce3563d50 /source3/torture/pdbtest.c
parent102f39ae3e7df26faf81595c8e0120b2e2a45bbd (diff)
downloadsamba-8fd5e0ff2e08288d499556b5b48dcc7a9a3fc85f.tar.gz
samba-8fd5e0ff2e08288d499556b5b48dcc7a9a3fc85f.tar.bz2
samba-8fd5e0ff2e08288d499556b5b48dcc7a9a3fc85f.zip
Replace calls to sid_equal with calls to dom_sid_equal
Diffstat (limited to 'source3/torture/pdbtest.c')
-rw-r--r--source3/torture/pdbtest.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/torture/pdbtest.c b/source3/torture/pdbtest.c
index 65f5188cc0..2f4909a68b 100644
--- a/source3/torture/pdbtest.c
+++ b/source3/torture/pdbtest.c
@@ -438,7 +438,8 @@ int main(int argc, char **argv)
if (!strequal(td->domain_name, new_td->domain_name) ||
!strequal(td->netbios_name, new_td->netbios_name) ||
- !sid_equal(&td->security_identifier, &new_td->security_identifier) ||
+ !dom_sid_equal(&td->security_identifier,
+ &new_td->security_identifier) ||
td->trust_direction != new_td->trust_direction ||
td->trust_type != new_td->trust_type ||
td->trust_attributes != new_td->trust_attributes ||