diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-02-13 18:20:54 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-02-13 18:24:45 +0100 |
commit | 415c615dbf50e810e26d40169c78bbaf9de88e3e (patch) | |
tree | b5fe23e0a553f2349c2caddca150fa934b1e9e1f /source4 | |
parent | eed65ed337ae89f864dd833cc39c2f75c5ac3e67 (diff) | |
download | samba-415c615dbf50e810e26d40169c78bbaf9de88e3e.tar.gz samba-415c615dbf50e810e26d40169c78bbaf9de88e3e.tar.bz2 samba-415c615dbf50e810e26d40169c78bbaf9de88e3e.zip |
s4:util.c - Corrected the location of the "Directory Service" object
I wonder why nobody noticed this since for sure this "tombstone" functionality
was broken till now.
Diffstat (limited to 'source4')
-rw-r--r-- | source4/dsdb/common/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index a26ffc26f5..d659767138 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -3213,7 +3213,7 @@ int dsdb_tombstone_lifetime(struct ldb_context *ldb, uint32_t *lifetime) } /* see MS-ADTS section 7.1.1.2.4.1.1. There doesn't appear to be a wellknown GUID for this */ - if (!ldb_dn_add_child_fmt(dn, "CN=Directory Service,CN=Windows NT")) { + if (!ldb_dn_add_child_fmt(dn, "CN=Directory Service,CN=Windows NT,CN=Services")) { talloc_free(dn); return LDB_ERR_OPERATIONS_ERROR; } |