From 3a60a6743262ab2ab221e0fe13ef6b510424ca3f Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 21 Sep 2006 18:37:09 +0000 Subject: r18793: Fix BE string handling in the auto-generated code. Should now work again with ASU. Jeremy. (This used to be commit 53e97bf92817b6cfc3f93c999a81ef8ad49a1609) --- source3/include/charset.h | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'source3/include') diff --git a/source3/include/charset.h b/source3/include/charset.h index 8a51a1876e..5983fcdd4f 100644 --- a/source3/include/charset.h +++ b/source3/include/charset.h @@ -20,19 +20,9 @@ */ /* this defines the charset types used in samba */ -typedef enum {CH_UCS2=0, CH_UTF16=0, CH_UNIX=1, CH_DISPLAY=2, CH_DOS=3, CH_UTF8=4} charset_t; +typedef enum {CH_UTF16LE=0, CH_UTF16=0, CH_UNIX=1, CH_DISPLAY=2, CH_DOS=3, CH_UTF8=4, CH_UTF16BE=5} charset_t; -#if 0 -/* FIXME!!! Hack job for now to get the lsa ndr code compiling */ -#ifndef strlen_m -#define strlen_m strlen -#endif -#ifndef strlen_m_term -#define strlen_m_term strlen -#endif -#endif - -#define NUM_CHARSETS 5 +#define NUM_CHARSETS 6 /* * for each charset we have a function that pushes from that charset to a ucs2 -- cgit