summaryrefslogtreecommitdiff
path: root/source3/rpc_parse/parse_sec.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-12-18 06:02:31 +0000
committerJeremy Allison <jra@samba.org>2000-12-18 06:02:31 +0000
commit452102deb4b8aecb45569239685ec73e2e9282ec (patch)
tree2acdb5bb0ebab1c176e64f59e70093ee20a008db /source3/rpc_parse/parse_sec.c
parent862b835040694353c3ecc7bdd964332e60779723 (diff)
downloadsamba-452102deb4b8aecb45569239685ec73e2e9282ec.tar.gz
samba-452102deb4b8aecb45569239685ec73e2e9282ec.tar.bz2
samba-452102deb4b8aecb45569239685ec73e2e9282ec.zip
Merged Tim's fixes from appliance-head.
Jeremy. (This used to be commit 26f873540c2299600cb80eb059fcdaf70ec82473)
Diffstat (limited to 'source3/rpc_parse/parse_sec.c')
-rw-r--r--source3/rpc_parse/parse_sec.c47
1 files changed, 39 insertions, 8 deletions
diff --git a/source3/rpc_parse/parse_sec.c b/source3/rpc_parse/parse_sec.c
index eac00d8372..e2ca2202e1 100644
--- a/source3/rpc_parse/parse_sec.c
+++ b/source3/rpc_parse/parse_sec.c
@@ -317,7 +317,15 @@ BOOL sec_acl_equal(SEC_ACL *s1, SEC_ACL *s2)
/* Check top level stuff */
- if (s1->revision != s2->revision || s1->num_aces != s2->num_aces) {
+ if (s1->revision != s2->revision) {
+ DEBUG(10, ("sec_acl_equal(): revision differs (%d != %d)\n",
+ s1->revision, s2->revision));
+ return False;
+ }
+
+ if (s1->num_aces != s2->num_aces) {
+ DEBUG(10, ("sec_acl_equal(): num_aces differs (%d != %d)\n",
+ s1->revision, s2->revision));
return False;
}
@@ -354,16 +362,39 @@ BOOL sec_desc_equal(SEC_DESC *s1, SEC_DESC *s2)
/* Check top level stuff */
- if (s1->revision != s2->revision || s1->type != s2->type) {
- DEBUG(10, ("sec_desc_equal(): revision/type not equal\n"));
+ if (s1->revision != s2->revision) {
+ DEBUG(10, ("sec_desc_equal(): revision differs (%d != %d)\n",
+ s1->revision, s2->revision));
+ return False;
+ }
+
+ if (s1->type!= s2->type) {
+ DEBUG(10, ("sec_desc_equal(): type differs (%d != %d)\n",
+ s1->type, s2->type));
return False;
}
/* Check owner and group */
- if (!sid_equal(s1->owner_sid, s2->owner_sid) ||
- !sid_equal(s1->grp_sid, s2->grp_sid)) {
- DEBUG(10, ("sec_desc_equal(): owner/group not equal\n"));
+ if (!sid_equal(s1->owner_sid, s2->owner_sid)) {
+ fstring str1, str2;
+
+ sid_to_string(str1, s1->owner_sid);
+ sid_to_string(str2, s2->owner_sid);
+
+ DEBUG(10, ("sec_desc_equal(): owner differs (%s != %s)\n",
+ str1, str2));
+ return False;
+ }
+
+ if (!sid_equal(s1->grp_sid, s2->grp_sid)) {
+ fstring str1, str2;
+
+ sid_to_string(str1, s1->grp_sid);
+ sid_to_string(str2, s2->grp_sid);
+
+ DEBUG(10, ("sec_desc_equal(): group differs (%s != %s)\n",
+ str1, str2));
return False;
}
@@ -371,7 +402,7 @@ BOOL sec_desc_equal(SEC_DESC *s1, SEC_DESC *s2)
if ((s1->dacl && !s2->dacl) || (!s1->dacl && s2->dacl) ||
(s1->sacl && !s2->sacl) || (!s1->sacl && s2->sacl)) {
- DEBUG(10, ("sec_desc_equal(): dacl/sacl not equal\n"));
+ DEBUG(10, ("sec_desc_equal(): dacl or sacl not present\n"));
return False;
}
@@ -380,7 +411,7 @@ BOOL sec_desc_equal(SEC_DESC *s1, SEC_DESC *s2)
if (!sec_acl_equal(s1->dacl, s2->dacl) ||
!sec_acl_equal(s1->sacl, s2->sacl)) {
- DEBUG(10, ("sec_desc_equal(): dacl/dacl list not equal\n"));
+ DEBUG(10, ("sec_desc_equal(): dacl/sacl list not equal\n"));
return False;
}