summaryrefslogtreecommitdiffstats
path: root/source/include
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1997-07-18 20:21:32 +0000
committerSamba Release Account <samba-bugs@samba.org>1997-07-18 20:21:32 +0000
commit2a28a6e5e461aca7fe6c19cd01d287010056cffb (patch)
treed7260b27bf8a97bd1dd626f4fe68fc31fd6eb039 /source/include
parent256afb764828b0a6dad5529d62501bc9ea2807ee (diff)
downloadsamba-2a28a6e5e461aca7fe6c19cd01d287010056cffb.tar.gz
samba-2a28a6e5e461aca7fe6c19cd01d287010056cffb.tar.xz
samba-2a28a6e5e461aca7fe6c19cd01d287010056cffb.zip
charset.c: Split charset_initialise() into 2 - a charset_initialise() and
a codepage_initialise(). Fixes problem with initialising dos map twice. charset.h: Changes to support charset changes. client.c: Changes to support charset changes. loadparm.c: follow symlinks parameter from David Clerc <David.Clerc@cui.unige.ch> nmbd.c: Changes to support charset changes. nmblookup.c:Changes to support charset changes. proto.h: Changes to support charset changes. reply.c: Don't call security=server with no user/no password guest. Fix from Stefaan A Eeckels <Stefaan.Eeckels@ecc.lu> server.c: follow symlinks code from David Clerc <David.Clerc@cui.unige.ch> smbpasswd.c:Changes to support charset changes. status.c: Changes to support charset changes. testparm.c: Changes to support charset changes. testprns.c: Changes to support charset changes. uid.c: Fixed log message with no \n. Jeremy (jallison@whistle.com)
Diffstat (limited to 'source/include')
-rw-r--r--source/include/charset.h2
-rw-r--r--source/include/proto.h4
2 files changed, 4 insertions, 2 deletions
diff --git a/source/include/charset.h b/source/include/charset.h
index 25544fb6215..5f5e2016ee1 100644
--- a/source/include/charset.h
+++ b/source/include/charset.h
@@ -25,7 +25,7 @@ extern char *dos_char_map;
extern char *upper_char_map;
extern char *lower_char_map;
extern void add_char_string(char *s);
-extern void charset_initialise(int);
+extern void charset_initialise(void);
#ifdef toupper
#undef toupper
diff --git a/source/include/proto.h b/source/include/proto.h
index 5ba308561fa..e9994214fb8 100644
--- a/source/include/proto.h
+++ b/source/include/proto.h
@@ -14,7 +14,8 @@ int interpret_character_set(char *str, int def);
/*The following definitions come from charset.c */
-void charset_initialise(int client_codepage);
+void charset_initialise(void);
+void codepage_initialise(int client_codepage);
void add_char_string(char *s);
/*The following definitions come from chgpasswd.c */
@@ -243,6 +244,7 @@ BOOL lp_share_modes(int );
BOOL lp_onlyuser(int );
BOOL lp_manglednames(int );
BOOL lp_widelinks(int );
+BOOL lp_symlinks(int );
BOOL lp_syncalways(int );
BOOL lp_map_system(int );
BOOL lp_delete_readonly(int );