diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-08-30 00:26:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:34:58 -0500 |
commit | 584f3aeb7e4a59d9c6aa7650c196fd2c86500c16 (patch) | |
tree | d19c9f52b60c9ce845a94f1c3f5bd3628a140470 /source4 | |
parent | 2f6fd1d45c6c2edf716973388287259d877cf8c1 (diff) | |
download | samba-584f3aeb7e4a59d9c6aa7650c196fd2c86500c16.tar.gz samba-584f3aeb7e4a59d9c6aa7650c196fd2c86500c16.tar.xz samba-584f3aeb7e4a59d9c6aa7650c196fd2c86500c16.zip |
r9768: Arrrgh.. Right this time.
(This used to be commit 8bded3fc926b8eb6285e06fd4b4706b779edb386)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/samldb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/samldb.c b/source4/dsdb/samdb/ldb_modules/samldb.c index 9ab68301616..6b6c8bd55da 100644 --- a/source4/dsdb/samdb/ldb_modules/samldb.c +++ b/source4/dsdb/samdb/ldb_modules/samldb.c @@ -541,7 +541,7 @@ static int samldb_add_record(struct ldb_module *module, const struct ldb_message ldb_debug(module->ldb, LDB_DEBUG_TRACE, "samldb_add_record\n"); - if (strcmp(msg->dn->components[0].name, LDB_SPECIAL) == 0) { /* do not manipulate our control entries */ + if (strcmp(msg->dn->components[0].name, "@SPECIAL") == 0) { /* do not manipulate our control entries */ return ldb_next_add_record(module, msg); } |