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/schema | |
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/schema')
-rw-r--r-- | source4/dsdb/schema/schema_init.c | 2 |
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) { |