[SCM] Samba Shared Repository - branch master updated

Michael Adam obnox at samba.org
Thu Sep 23 10:49:30 MDT 2010


The branch, master has been updated
       via  c3f5d99 s3:registry: try to fix the build of reg_parse_internal on HP-UX
      from  82c0e79 s3: fix tdbdump build on Solaris and other boxes

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit c3f5d990652aec4b4f1f23a5e1c7b644cd46cbe7
Author: Michael Adam <obnox at samba.org>
Date:   Thu Sep 23 18:48:25 2010 +0200

    s3:registry: try to fix the build of reg_parse_internal on HP-UX
    
    The HP compiler does not seem to like {} for char[4].

-----------------------------------------------------------------------

Summary of changes:
 source3/registry/reg_parse_internal.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/registry/reg_parse_internal.c b/source3/registry/reg_parse_internal.c
index 64c4e06..3d3cf47 100644
--- a/source3/registry/reg_parse_internal.c
+++ b/source3/registry/reg_parse_internal.c
@@ -262,7 +262,7 @@ static const struct {
 	{"UTF-16LE", CH_UTF16LE, 2, {0xFF, 0xFE}},
 	{"UTF-16BE", CH_UTF16BE, 2, {0xFE, 0xFF}},
 	{"UTF-32BE", CH_INVALID, 4, {0x00, 0x00, 0xFE, 0xFF}},
-	{NULL,       CH_INVALID, 0, {}}
+	{NULL,       CH_INVALID, 0}
 };
 
 bool srprs_bom(const char** ptr, const char** name, charset_t* ctype)


-- 
Samba Shared Repository


More information about the samba-cvs mailing list