summaryrefslogtreecommitdiff
path: root/source3/include/proto.h
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-06-01 11:19:21 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-06-01 04:19:05 +0200
commitf331936db2990589047edd4aee61ac298262123d (patch)
tree59a0c6757e5f3d499d83ad55035afb0e962d81d2 /source3/include/proto.h
parenta74e7fbc6abb16e85eb6ac14193be0e0f664a6f0 (diff)
downloadsamba-f331936db2990589047edd4aee61ac298262123d.tar.gz
samba-f331936db2990589047edd4aee61ac298262123d.tar.bz2
samba-f331936db2990589047edd4aee61ac298262123d.zip
s3-param Make lp_smb_passwd_file() and lp_private_dir() const
This disables % substitutions in the 'smb passwd file' and 'private dir' parameters. These are used all over the codebase, and need to be internally consistent for the life of the process, as they determine the location of secrets.tdb, as well as the passdb databases. Andrew Bartlett
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r--source3/include/proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 0d70c4fc78..93ba2beaa7 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -1181,8 +1181,8 @@ 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);
-char *lp_private_dir(void);
+const char *lp_smb_passwd_file(void);
+const char *lp_private_dir(void);
char *lp_serverstring(void);
int lp_printcap_cache_time(void);
char *lp_addport_cmd(void);