summaryrefslogtreecommitdiff
path: root/source4/lib/registry
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2010-06-28 23:12:10 +0200
committerMatthias Dieter Wallnöfer <mdw@samba.org>2010-06-28 23:13:04 +0200
commite6371246ef8a6e0f27880d81ef041e9959b22322 (patch)
tree5ca0340e32d33902b22e8a2f0fab8e90e4aa3873 /source4/lib/registry
parentba01b216e23ddae9961f7120792969fc2fe075b1 (diff)
downloadsamba-e6371246ef8a6e0f27880d81ef041e9959b22322.tar.gz
samba-e6371246ef8a6e0f27880d81ef041e9959b22322.tar.bz2
samba-e6371246ef8a6e0f27880d81ef041e9959b22322.zip
s4:lib/registry/ldb.c - add a missing brace
Sorry didn't check that earlier.
Diffstat (limited to 'source4/lib/registry')
-rw-r--r--source4/lib/registry/ldb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/ldb.c b/source4/lib/registry/ldb.c
index f0a1c431c5..2b08445666 100644
--- a/source4/lib/registry/ldb.c
+++ b/source4/lib/registry/ldb.c
@@ -527,7 +527,7 @@ static WERROR ldb_open_key(TALLOC_CTX *mem_ctx, const struct hive_key *h,
newkd->ldb = talloc_reference(newkd, kd->ldb);
newkd->dn = ldb_dn_copy(newkd, res->msgs[0]->dn);
newkd->classname = talloc_steal(newkd,
- ldb_msg_find_attr_as_string(res->msgs[0], "classname", NULL);
+ ldb_msg_find_attr_as_string(res->msgs[0], "classname", NULL));
talloc_free(res);