diff options
author | Tim Potter <tpot@samba.org> | 2002-07-16 18:45:59 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-07-16 18:45:59 +0000 |
commit | db5d91fedfe9355f4a79aee9dc60d77dd068b334 (patch) | |
tree | ab71040490eaaf640e540e093163ba98c2039e07 | |
parent | b013b9437557f2d427e4b646b49ad7d99e94c164 (diff) | |
download | samba-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.c | 3 |
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. */ |