From efa1571b8bdc178a981dc37a2c4d1add67b9c0bd Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 19 Feb 2002 23:02:39 +0000 Subject: Patch from Hasch@t-online.de (Juergen Hasch) to add UTF-8 as an explict character set for conversion. To be used in Winbind and the 'net ads' commands. Andrew Bartlett (This used to be commit fa9d3060ff7510e176d7608b49075379500f55c4) --- source3/include/charset.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/include/charset.h') diff --git a/source3/include/charset.h b/source3/include/charset.h index b942594d04..07d5e2d599 100644 --- a/source3/include/charset.h +++ b/source3/include/charset.h @@ -19,6 +19,6 @@ */ /* this defines the charset types used in samba */ -typedef enum {CH_UCS2=0, CH_UNIX=1, CH_DISPLAY=2, CH_DOS=3} charset_t; +typedef enum {CH_UCS2=0, CH_UNIX=1, CH_DISPLAY=2, CH_DOS=3, CH_UTF8=4} charset_t; -#define NUM_CHARSETS 4 +#define NUM_CHARSETS 5 -- cgit