summaryrefslogtreecommitdiff
path: root/source4/dsdb/schema/schema_init.c
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2010-09-13 22:39:50 +0200
committerMatthias Dieter Wallnöfer <mdw@samba.org>2010-09-13 22:39:50 +0200
commita4b7fac86d6f348d785409555849449527e22e58 (patch)
tree76c94692c315274145c0a920c8dddcb9bb96a1a9 /source4/dsdb/schema/schema_init.c
parent0a19290ca7cb5531d71e65a37fd11276330b2a12 (diff)
downloadsamba-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/schema/schema_init.c')
-rw-r--r--source4/dsdb/schema/schema_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/schema/schema_init.c b/source4/dsdb/schema/schema_init.c
index 7bcdf858dd..a95e7ec2af 100644
--- a/source4/dsdb/schema/schema_init.c
+++ b/source4/dsdb/schema/schema_init.c
@@ -392,7 +392,7 @@ WERROR dsdb_read_prefixes_from_ldb(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
*/
static bool dsdb_schema_unique_attribute(const char *attr)
{
- const char *attrs[] = { "objectGUID", "objectSID" , NULL };
+ const char *attrs[] = { "objectGUID", "objectSid" , NULL };
unsigned int i;
for (i=0;attrs[i];i++) {
if (strcasecmp(attr, attrs[i]) == 0) {