diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-03-03 21:38:56 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-03-03 21:38:56 +0000 |
commit | 14b1ec7ccdf80268f062e95538ee6b8b3882786f (patch) | |
tree | 8e06b58e71a9d0be1d0c36c009ce741e65acb66e | |
parent | 7e9553c168e2c8cedfd1ce79baa2c5181befb2af (diff) | |
download | samba-14b1ec7ccdf80268f062e95538ee6b8b3882786f.tar.gz samba-14b1ec7ccdf80268f062e95538ee6b8b3882786f.tar.bz2 samba-14b1ec7ccdf80268f062e95538ee6b8b3882786f.zip |
make default unix charset UTF8
this means that we at least support all unicode chars by default
(This used to be commit 54a3f374496316ccc6d0e4aa2267963193690a23)
-rw-r--r-- | source3/param/loadparm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 8d7dd5c60d..ea3894c236 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1219,6 +1219,9 @@ static void init_globals(void) string_set(&Globals.szGuestaccount, GUEST_ACCOUNT); + /* using UTF8 by default allows us to support all chars */ + string_set(&Globals.unix_charset, "UTF8"); + /* * Allow the default PASSWD_CHAT to be overridden in local.h. */ |