summaryrefslogtreecommitdiffstats
path: root/source/param
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2001-11-19 05:49:20 +0000
committerMartin Pool <mbp@samba.org>2001-11-19 05:49:20 +0000
commitd51ef6bfa3d194b58c3ee7706a7d475ef042676d (patch)
treed3ae1b6e63e1a4f3c718100ea33413ba003dda82 /source/param
parentebd46aebf921c0026791ffb0afdcffaecb496e8c (diff)
downloadsamba-d51ef6bfa3d194b58c3ee7706a7d475ef042676d.tar.gz
samba-d51ef6bfa3d194b58c3ee7706a7d475ef042676d.tar.xz
samba-d51ef6bfa3d194b58c3ee7706a7d475ef042676d.zip
Move all other paths into dynconfig
Diffstat (limited to 'source/param')
-rw-r--r--source/param/loadparm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c
index 931e07b37c1..3f781be67f0 100644
--- a/source/param/loadparm.c
+++ b/source/param/loadparm.c
@@ -1045,7 +1045,7 @@ Initialise the sDefault parameter structure for the printer values.
static void init_printer_values(void)
{
string_set(&sDefault.szPrinterDriver, "");
- string_set(&sDefault.szDriverFile, DRIVERFILE);
+ string_set(&sDefault.szDriverFile, dyn_DRIVERFILE);
/* choose defaults depending on the type of printing */
switch (sDefault.iPrinting)
@@ -1186,8 +1186,8 @@ static void init_globals(void)
DEBUG(3, ("Initialising global parameters\n"));
- string_set(&Globals.szSMBPasswdFile, SMB_PASSWD_FILE);
- string_set(&Globals.szPrivateDir, PRIVATE_DIR);
+ string_set(&Globals.szSMBPasswdFile, dyn_SMB_PASSWD_FILE);
+ string_set(&Globals.szPrivateDir, dyn_PRIVATE_DIR);
string_set(&Globals.szPassdbModulePath, "");
string_set(&Globals.szGuestaccount, GUEST_ACCOUNT);