diff options
author | Martin Pool <mbp@samba.org> | 2001-11-19 05:49:20 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-11-19 05:49:20 +0000 |
commit | 788379830166313922fa6cb56f789a6754e27614 (patch) | |
tree | 4df7fa8c4568ef5bf732b429bb0e9042ecd28e77 /source3/dynconfig.c | |
parent | 15c6ab0f2ddb1063bffc1e6522f6a1ca83bb4b8f (diff) | |
download | samba-788379830166313922fa6cb56f789a6754e27614.tar.gz |
Move all other paths into dynconfig
(This used to be commit d51ef6bfa3d194b58c3ee7706a7d475ef042676d)
Diffstat (limited to 'source3/dynconfig.c')
-rw-r--r-- | source3/dynconfig.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/source3/dynconfig.c b/source3/dynconfig.c index 34603fee86b..a9055715c97 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; + + |