summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-07-16 18:45:59 +0000
committerTim Potter <tpot@samba.org>2002-07-16 18:45:59 +0000
commitdb5d91fedfe9355f4a79aee9dc60d77dd068b334 (patch)
treeab71040490eaaf640e540e093163ba98c2039e07
parentb013b9437557f2d427e4b646b49ad7d99e94c164 (diff)
downloadsamba-db5d91fedfe9355f4a79aee9dc60d77dd068b334.tar.gz
samba-db5d91fedfe9355f4a79aee9dc60d77dd068b334.tar.xz
samba-db5d91fedfe9355f4a79aee9dc60d77dd068b334.zip
Use codepage 850 as a default for the dos character set.
Tridge, is this OK?
-rw-r--r--source/param/loadparm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c
index 6e3ce460cd4..37f8bb3ca48 100644
--- a/source/param/loadparm.c
+++ b/source/param/loadparm.c
@@ -1201,6 +1201,9 @@ static void init_globals(void)
/* using UTF8 by default allows us to support all chars */
string_set(&Globals.unix_charset, "UTF8");
+ /* Use codepage 850 as a default for the dos character set */
+ string_set(&Globals.dos_charset, "CP850");
+
/*
* Allow the default PASSWD_CHAT to be overridden in local.h.
*/