summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2010-03-23 16:17:25 +0100
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2010-03-23 16:46:17 +0100
commit0426b5b78678f4ffe564aa58a00a8f01790e7b1f (patch)
tree50d8dab547caa6cf6a27eb8bf07bb84d136f1c3d /source4
parent97a974e5b7b4645544b10ff48459125c5580580d (diff)
downloadsamba-0426b5b78678f4ffe564aa58a00a8f01790e7b1f.tar.gz
samba-0426b5b78678f4ffe564aa58a00a8f01790e7b1f.tar.bz2
samba-0426b5b78678f4ffe564aa58a00a8f01790e7b1f.zip
s4:registry - "LDB backend" - fix indentation
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/registry/ldb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/registry/ldb.c b/source4/lib/registry/ldb.c
index a4675c8a7e..9b834faa98 100644
--- a/source4/lib/registry/ldb.c
+++ b/source4/lib/registry/ldb.c
@@ -192,7 +192,8 @@ static struct ldb_message *reg_ldb_pack_value(struct ldb_context *ctx,
if (data.length == sizeof(uint64_t)) {
char *conv_str;
- conv_str = talloc_asprintf(msg, "0x%16.16llx", BVAL(data.data, 0));
+ conv_str = talloc_asprintf(msg, "0x%16.16llx",
+ BVAL(data.data, 0));
if (conv_str == NULL) {
talloc_free(msg);
return NULL;