summaryrefslogtreecommitdiff
path: root/source4/dsdb/samdb
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-05-18 08:09:51 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:52:37 -0500
commitd863f65d93412f58d74c1960e72d0114df531118 (patch)
tree75a1e6787e35066192c72567f537178c7a170a54 /source4/dsdb/samdb
parent9b4a689c9851ada1580c0b93a791fced57a3c45c (diff)
downloadsamba-d863f65d93412f58d74c1960e72d0114df531118.tar.gz
samba-d863f65d93412f58d74c1960e72d0114df531118.tar.bz2
samba-d863f65d93412f58d74c1960e72d0114df531118.zip
r22991: ignore '@foo' attributes in the repl_meta_data module
metze (This used to be commit b592ac1c2c91a72a8aae8ed11d74cba3ce0778c5)
Diffstat (limited to 'source4/dsdb/samdb')
-rw-r--r--source4/dsdb/samdb/ldb_modules/repl_meta_data.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/repl_meta_data.c b/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
index fccd5725e8..9dfd2ef822 100644
--- a/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
+++ b/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
@@ -483,6 +483,8 @@ static int replmd_add_originating(struct ldb_module *module,
struct replPropertyMetaData1 *m = &nmd.ctr.ctr1.array[ni];
const struct dsdb_attribute *sa;
+ if (e->name[0] == '@') continue;
+
sa = dsdb_attribute_by_lDAPDisplayName(schema, e->name);
if (!sa) {
ldb_debug_set(module->ldb, LDB_DEBUG_ERROR,