summaryrefslogtreecommitdiff
path: root/source4/lib/registry/ldb.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/registry/ldb.c')
-rw-r--r--source4/lib/registry/ldb.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/source4/lib/registry/ldb.c b/source4/lib/registry/ldb.c
index 83905f3e71..a86dacd34b 100644
--- a/source4/lib/registry/ldb.c
+++ b/source4/lib/registry/ldb.c
@@ -231,11 +231,8 @@ static struct ldb_message *reg_ldb_pack_value(struct ldb_context *ctx,
conv_str = talloc_asprintf(msg, "0x%8.8x",
IVAL(data.data, 0));
} else {
- conv_str = talloc_asprintf(msg, "0x%2.2x%2.2x%2.2x%2.2x",
- CVAL(data.data, 0),
- CVAL(data.data, 1),
- CVAL(data.data, 2),
- CVAL(data.data, 3));
+ conv_str = talloc_asprintf(msg, "0x%8.8x",
+ RIVAL(data.data, 0));
}
if (conv_str == NULL) {