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/param/loadparm.c | |
parent | 15c6ab0f2ddb1063bffc1e6522f6a1ca83bb4b8f (diff) | |
download | samba-788379830166313922fa6cb56f789a6754e27614.tar.gz samba-788379830166313922fa6cb56f789a6754e27614.tar.bz2 samba-788379830166313922fa6cb56f789a6754e27614.zip |
Move all other paths into dynconfig
(This used to be commit d51ef6bfa3d194b58c3ee7706a7d475ef042676d)
Diffstat (limited to 'source3/param/loadparm.c')
-rw-r--r-- | source3/param/loadparm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 931e07b37c..3f781be67f 100644 --- a/source3/param/loadparm.c +++ b/source3/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); |