From 788379830166313922fa6cb56f789a6754e27614 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Mon, 19 Nov 2001 05:49:20 +0000 Subject: Move all other paths into dynconfig (This used to be commit d51ef6bfa3d194b58c3ee7706a7d475ef042676d) --- source3/dynconfig.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'source3/dynconfig.c') diff --git a/source3/dynconfig.c b/source3/dynconfig.c index 34603fee86..a9055715c9 100644 --- a/source3/dynconfig.c +++ b/source3/dynconfig.c @@ -45,20 +45,29 @@ char const *dyn_SBINDIR = SBINDIR, pstring dyn_CONFIGFILE = CONFIGFILE; /**< Location of smb.conf file. **/ -pstring dyn_LOGFILEBASE; /**< Log file directory. **/ +/** Log file directory. **/ +pstring dyn_LOGFILEBASE = LOGFILEBASE; -pstring dyn_LMHOSTSFILE; /**< Statically configured LanMan hosts. **/ +/** Statically configured LanMan hosts. **/ +pstring dyn_LMHOSTSFILE = LMHOSTSFILE; /** * @brief Samba library directory. * * @sa lib_path() to get the path to a file inside the LIBDIR. **/ -pstring dyn_LIBDIR; +pstring dyn_LIBDIR = LIBDIR; /** * @brief Directory holding lock files. * * Not writable, but used to set a default in the parameter table. **/ -const pstring dyn_LOCKDIR; +const pstring dyn_LOCKDIR = LOCKDIR; + +const pstring dyn_DRIVERFILE = DRIVERFILE; + +const pstring dyn_SMB_PASSWD_FILE = SMB_PASSWD_FILE; +const pstring dyn_PRIVATE_DIR = PRIVATE_DIR; + + -- cgit