aboutsummaryrefslogtreecommitdiffstats
path: root/src/myfprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/myfprintf.c')
-rw-r--r--src/myfprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/myfprintf.c b/src/myfprintf.c
index 500414d0b..e5ed875af 100644
--- a/src/myfprintf.c
+++ b/src/myfprintf.c
@@ -79,8 +79,8 @@ void myfprintfStdLogMode(FILE * out, FILE * err)
myfprintf_stdLogMode = 1;
myfprintf_out = out;
myfprintf_err = err;
- myfprintf_outFilename = getConfigParamValue(CONF_LOG_FILE);
- myfprintf_errFilename = getConfigParamValue(CONF_ERROR_FILE);
+ myfprintf_outFilename = parseConfigFilePath(CONF_LOG_FILE, 1)->value;
+ myfprintf_errFilename = parseConfigFilePath(CONF_ERROR_FILE, 1)->value;
}
int myfprintfCloseAndOpenLogFile(void)