s4-dsdb: Fix the case for attribute name msDS-hasMasterNCs
authorAmitay Isaacs <amitay@gmail.com>
Wed, 14 Mar 2012 04:59:27 +0000 (15:59 +1100)
committerAmitay Isaacs <amitay@samba.org>
Wed, 14 Mar 2012 10:59:02 +0000 (11:59 +0100)
Autobuild-User: Amitay Isaacs <amitay@samba.org>
Autobuild-Date: Wed Mar 14 11:59:02 CET 2012 on sn-devel-104

source4/dsdb/kcc/kcc_drs_replica_info.c
source4/dsdb/repl/drepl_partitions.c

index 8eb72662b77b0f05e6f914258217bf19915778d2..8075242eb0e9e4205aaffd4a81bea0351d5a9c99 100644 (file)
@@ -386,7 +386,7 @@ struct ncList {
 static WERROR get_master_ncs(TALLOC_CTX *mem_ctx, struct ldb_context *samdb,
                             const char *ntds_guid_str, struct ncList **master_nc_list)
 {
-       const char *post_2003_attrs[] = { "msDs-hasMasterNCs", "hasPartialReplicaNCs", NULL };
+       const char *post_2003_attrs[] = { "msDS-hasMasterNCs", "hasPartialReplicaNCs", NULL };
        const char *pre_2003_attrs[] = { "hasMasterNCs", "hasPartialReplicaNCs", NULL };
        const char **attrs = post_2003_attrs;
        struct ldb_result *res;
@@ -397,7 +397,7 @@ static WERROR get_master_ncs(TALLOC_CTX *mem_ctx, struct ldb_context *samdb,
        char *nc_str;
        int is_level_post_2003;
 
-       /* In W2003 and greater, msDs-hasMasterNCs attribute lists the writable NC replicas */
+       /* In W2003 and greater, msDS-hasMasterNCs attribute lists the writable NC replicas */
        is_level_post_2003 = 1;
        ret = ldb_search(samdb, mem_ctx, &res, ldb_get_config_basedn(samdb),
                        LDB_SCOPE_DEFAULT, post_2003_attrs, "(objectguid=%s)", ntds_guid_str);
index 07f3339cf5787196f476140042a7cfbe6cb8fa4b..3aa715a92d20bd59ed30ac53248199064f53fc85 100644 (file)
@@ -41,7 +41,7 @@
 WERROR dreplsrv_load_partitions(struct dreplsrv_service *s)
 {
        WERROR status;
-       static const char *attrs[] = { "hasMasterNCs", "msDs-hasMasterNCs", "hasPartialReplicaNCs", "msDS-HasFullReplicaNCs", NULL };
+       static const char *attrs[] = { "hasMasterNCs", "msDS-hasMasterNCs", "hasPartialReplicaNCs", "msDS-HasFullReplicaNCs", NULL };
        unsigned int a;
        int ret;
        TALLOC_CTX *tmp_ctx;