diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-09-13 22:39:50 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-09-13 22:39:50 +0200 |
commit | a4b7fac86d6f348d785409555849449527e22e58 (patch) | |
tree | 76c94692c315274145c0a920c8dddcb9bb96a1a9 /source4/dsdb/common | |
parent | 0a19290ca7cb5531d71e65a37fd11276330b2a12 (diff) | |
download | samba-a4b7fac86d6f348d785409555849449527e22e58.tar.gz samba-a4b7fac86d6f348d785409555849449527e22e58.tar.bz2 samba-a4b7fac86d6f348d785409555849449527e22e58.zip |
s4:cosmetic - the SID attribute is called objectSid - not objectSID
Diffstat (limited to 'source4/dsdb/common')
-rw-r--r-- | source4/dsdb/common/util.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index c409adbbe3..d52590cd66 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -2525,7 +2525,7 @@ int dsdb_find_sid_by_dn(struct ldb_context *ldb, { int ret; struct ldb_result *res; - const char *attrs[] = { "objectSID", NULL }; + const char *attrs[] = { "objectSid", NULL }; TALLOC_CTX *tmp_ctx = talloc_new(ldb); struct dom_sid *s; @@ -2540,7 +2540,7 @@ int dsdb_find_sid_by_dn(struct ldb_context *ldb, talloc_free(tmp_ctx); return LDB_ERR_NO_SUCH_OBJECT; } - s = samdb_result_dom_sid(tmp_ctx, res->msgs[0], "objectSID"); + s = samdb_result_dom_sid(tmp_ctx, res->msgs[0], "objectSid"); if (s == NULL) { talloc_free(tmp_ctx); return LDB_ERR_NO_SUCH_OBJECT; @@ -2570,7 +2570,7 @@ int dsdb_find_dn_by_sid(struct ldb_context *ldb, DSDB_SEARCH_SEARCH_ALL_PARTITIONS | DSDB_SEARCH_SHOW_EXTENDED_DN | DSDB_SEARCH_ONE_ONLY, - "objectSID=%s", sid_str); + "objectSid=%s", sid_str); talloc_free(sid_str); if (ret != LDB_SUCCESS) { return ret; @@ -3871,7 +3871,7 @@ int dsdb_validate_dsa_guid(struct ldb_context *ldb, - remove "NTDS Settings" component from DN - do a base search on that DN for serverReference with extended-dn enabled - - extract objectSID from resulting serverReference + - extract objectSid from resulting serverReference attribute - check this sid matches the sid argument */ |