From 83c039378bb9622820d8005b196297733fe731f0 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Tue, 25 Oct 2011 20:06:45 +0200 Subject: s4:update_keytab LDB module - no need to filter for the DN We launch a search request with base scope on exactly the same DN (see downwards). Signed-off-by: Stefan Metzmacher --- source4/dsdb/samdb/ldb_modules/update_keytab.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/dsdb/samdb') diff --git a/source4/dsdb/samdb/ldb_modules/update_keytab.c b/source4/dsdb/samdb/ldb_modules/update_keytab.c index 2d4a903aeb..3658c1b3ce 100644 --- a/source4/dsdb/samdb/ldb_modules/update_keytab.c +++ b/source4/dsdb/samdb/ldb_modules/update_keytab.c @@ -89,8 +89,8 @@ static int add_modified(struct ldb_module *module, struct ldb_dn *dn, bool do_de struct ldb_result *res; int ret; - filter = talloc_asprintf(data, "(&(dn=%s)(&(objectClass=kerberosSecret)(privateKeytab=*)))", - ldb_dn_get_linearized(dn)); + filter = talloc_asprintf(data, + "(&(objectClass=kerberosSecret)(privateKeytab=*))"); if (!filter) { return ldb_oom(ldb); } -- cgit