From 2f79217964ef2f3b4b5c8bd8780db88081ecbc5d Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Fri, 19 Mar 2010 19:55:32 +0100 Subject: s4:registry - handle type "DWORD_BIG_ENDIAN" as type "DWORD" Further tests show that (at least per default) there aren't any differences between them. --- source4/lib/registry/ldb.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'source4/lib/registry/ldb.c') diff --git a/source4/lib/registry/ldb.c b/source4/lib/registry/ldb.c index 4dff5e3987..b21ca8e27b 100644 --- a/source4/lib/registry/ldb.c +++ b/source4/lib/registry/ldb.c @@ -228,14 +228,8 @@ static struct ldb_message *reg_ldb_pack_value(struct ldb_context *ctx, if (data.length == sizeof(uint32_t)) { char *conv_str; - if (type == REG_DWORD) { - conv_str = talloc_asprintf(msg, "0x%8.8x", - IVAL(data.data, 0)); - } else { - conv_str = talloc_asprintf(msg, "0x%8.8x", - RIVAL(data.data, 0)); - } - + conv_str = talloc_asprintf(msg, "0x%8.8x", + IVAL(data.data, 0)); if (conv_str == NULL) { talloc_free(msg); return NULL; -- cgit