From 90a6873b0570f2691ba8d8fd11154c856bdd4415 Mon Sep 17 00:00:00 2001 From: James Peach Date: Wed, 24 May 2006 04:02:14 +0000 Subject: r15848: Introduce commandline options to set the remainder of the parameters in dynconfig.c. This is mainly useful for test harness scripts, hence the lack of short options. (This used to be commit bf3b71c84595608d71e0f15a6158adacb295518e) --- source3/dynconfig.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/dynconfig.c') diff --git a/source3/dynconfig.c b/source3/dynconfig.c index 34c716926cc..3104a12f7cf 100644 --- a/source3/dynconfig.c +++ b/source3/dynconfig.c @@ -58,15 +58,15 @@ pstring dyn_LMHOSTSFILE = LMHOSTSFILE; * @sa lib_path() to get the path to a file inside the LIBDIR. **/ pstring dyn_LIBDIR = LIBDIR; -const fstring dyn_SHLIBEXT = SHLIBEXT; +fstring dyn_SHLIBEXT = SHLIBEXT; /** * @brief Directory holding lock files. * * Not writable, but used to set a default in the parameter table. **/ -const pstring dyn_LOCKDIR = LOCKDIR; -const pstring dyn_PIDDIR = PIDDIR; +pstring dyn_LOCKDIR = LOCKDIR; +pstring dyn_PIDDIR = PIDDIR; -const pstring dyn_SMB_PASSWD_FILE = SMB_PASSWD_FILE; -const pstring dyn_PRIVATE_DIR = PRIVATE_DIR; +pstring dyn_SMB_PASSWD_FILE = SMB_PASSWD_FILE; +pstring dyn_PRIVATE_DIR = PRIVATE_DIR; -- cgit