diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-06-01 11:13:30 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-06-01 04:19:05 +0200 |
commit | f52b97a1292e4e84fccd4601d341de857cc5e586 (patch) | |
tree | ec083fc66bfc25089dc9ffac755b4f1a65f54707 /source3/include | |
parent | ec9ff19e60907d6858c6a04f3fcd0e61d5c83100 (diff) | |
download | samba-f52b97a1292e4e84fccd4601d341de857cc5e586.tar.gz samba-f52b97a1292e4e84fccd4601d341de857cc5e586.tar.bz2 samba-f52b97a1292e4e84fccd4601d341de857cc5e586.zip |
s3-param Make charset parameters const
This removes the dangerous ability for these parameters to change
based on % substitutions.
Andrew Bartlett
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 82bea2e122..3f5417a471 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1176,9 +1176,9 @@ NTSTATUS change_trust_account_password( const char *domain, const char *remote_m /* The following definitions come from param/loadparm.c */ char *lp_smb_ports(void); -char *lp_dos_charset(void); -char *lp_unix_charset(void); -char *lp_display_charset(void); +const char *lp_dos_charset(void); +const char *lp_unix_charset(void); +const char *lp_display_charset(void); char *lp_logfile(void); char *lp_configfile(void); char *lp_smb_passwd_file(void); |