diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-06-11 01:03:06 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-06-11 01:03:06 +0000 |
commit | c6e63aa896a10656f6205828e744b722fc72f8ac (patch) | |
tree | a491f34425b6a5c47c4284c18e30c53cc57d112f /source3/param/loadparm.c | |
parent | 56adabeed7739cf800000adbf3d9530f2174442a (diff) | |
download | samba-c6e63aa896a10656f6205828e744b722fc72f8ac.tar.gz samba-c6e63aa896a10656f6205828e744b722fc72f8ac.tar.bz2 samba-c6e63aa896a10656f6205828e744b722fc72f8ac.zip |
Makefile: Added quoata changes for Linux from Thorvald Natvig
Makefile.RPM: Added quoata changes for Linux from Thorvald Natvig
charset.c: Large changes to add multiple client code pages.
charset.h: Changed charset_initialise() proto.
client.c: Fixed message sending bug. Changed charset_initialise().
ipc.c: Fixed #ifdef compile problems.
loadparm.c: Added "client code page" option.
nmbd.c: Changed charset_initialise(). Fixed lmhosts read.
nmblookup.c: Changed charset_initialise().
proto.h: Added lp_client_code_page(void).
quotas.c: Added quoata changes for Linux from Thorvald Natvig
reply.c: Changed debug level. Made SMBecho ignore tid.
server.c: Changed charset_initialise().
smb.h: Added DEFAULT_CLIENT_CODE_PAGE as 850.
smbpasswd.c: Changed charset_initialise().
status.c: Changed charset_initialise().
testparm.c: Changed charset_initialise().
testprns.c: Changed charset_initialise().
Jeremy Allison (jallison@whistle.com)
(This used to be commit 957025bace1bcff34d21a6caeca498e85abccb23)
Diffstat (limited to 'source3/param/loadparm.c')
-rw-r--r-- | source3/param/loadparm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index b368d3b2fa..b1e2834ca8 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -154,6 +154,7 @@ typedef struct int ReadSize; int shmem_size; int shmem_hash_size; + int client_code_page; BOOL bWINSsupport; BOOL bWINSproxy; BOOL bLocalMaster; @@ -435,6 +436,7 @@ struct parm_struct #ifdef KANJI {"coding system", P_INTEGER, P_GLOBAL, &coding_system, handle_coding_system}, #endif /* KANJI */ + {"client code page", P_INTEGER, P_GLOBAL, &Globals.client_code_page, NULL}, {"os level", P_INTEGER, P_GLOBAL, &Globals.os_level, NULL}, {"max ttl", P_INTEGER, P_GLOBAL, &Globals.max_ttl, NULL}, {"wins support", P_BOOL, P_GLOBAL, &Globals.bWINSsupport, NULL}, @@ -618,6 +620,7 @@ static void init_globals(void) #ifdef KANJI coding_system = interpret_coding_system (KANJI, SJIS_CODE); #endif /* KANJI */ + Globals.client_code_page = DEFAULT_CLIENT_CODE_PAGE; /* these parameters are set to defaults that are more appropriate for the increasing samba install base: @@ -830,6 +833,7 @@ FN_GLOBAL_INTEGER(lp_printing,&Globals.printing) FN_GLOBAL_INTEGER(lp_maxdisksize,&Globals.maxdisksize) FN_GLOBAL_INTEGER(lp_lpqcachetime,&Globals.lpqcachetime) FN_GLOBAL_INTEGER(lp_syslog,&Globals.syslog) +FN_GLOBAL_INTEGER(lp_client_code_page,&Globals.client_code_page) FN_LOCAL_STRING(lp_preexec,szPreExec) FN_LOCAL_STRING(lp_postexec,szPostExec) |