diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-03-22 13:47:42 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-03-22 13:47:42 +0000 |
commit | 1f499a79f5468e87d26b60ffe3aa375b91cadbef (patch) | |
tree | 095f7f163807060eadd42bf84a876aac1724b062 /source3/param | |
parent | b33cee92ed7e6729291616778963037f0d2f2f30 (diff) | |
download | samba-1f499a79f5468e87d26b60ffe3aa375b91cadbef.tar.gz samba-1f499a79f5468e87d26b60ffe3aa375b91cadbef.tar.xz samba-1f499a79f5468e87d26b60ffe3aa375b91cadbef.zip |
(merge from HEAD)
Small clenaup patches:
- safe_string.h - don't assume that __FUNCTION__ is available
- process.c - use new workaround from safe_string.h for the same
- util.c - Show how many bytes we smb_panic()ed trying to smb_xmalloc()
- gencache.c - Keep valgrind quiet by always null terminating.
- clistr.c - Add copyright
- srvstr.h - move srvstr_push into a .c file again, as a real function.
- srvstr.c - revive, with 'safe' checked srvstr_push
- loadparm.c - set a default for the display charset.
- connection.c - use safe_strcpy()
Andrew Bartlett
(This used to be commit c91e76bddbe1244ddc8d12b092eba875834029ac)
Diffstat (limited to 'source3/param')
-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 e91d4bdd32a..85f92e81ffe 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1268,6 +1268,9 @@ static void init_globals(void) /* using UTF8 by default allows us to support all chars */ string_set(&Globals.unix_charset, "UTF8"); + /* using UTF8 by default allows us to support all chars */ + string_set(&Globals.display_charset, "ASCII"); + /* Use codepage 850 as a default for the dos character set */ string_set(&Globals.dos_charset, "CP850"); |