From f741f656737f4ec46cd318e986b6bf412ed309d2 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Mon, 19 Nov 2001 02:49:53 +0000 Subject: Store some path names in global variables initialized to configure default, rather than in preprocessor macros. (This used to be commit 79ec88f0da40faebe1e587f1b3e87b5f2b184f58) --- source3/utils/testparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/utils/testparm.c') diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c index 09948b86359..53adbaae91b 100644 --- a/source3/utils/testparm.c +++ b/source3/utils/testparm.c @@ -218,7 +218,7 @@ int main(int argc, char *argv[]) argc += (1 - optind); if ((argc == 1) || (argc == 3)) - pstrcpy(configfile,CONFIGFILE); + pstrcpy(configfile, dyn_CONFIGFILE); else if ((argc == 2) || (argc == 4)) pstrcpy(configfile,argv[optind]); -- cgit