[asterisk-scf-commits] asterisk-scf/release/logger.git branch "master" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Fri Sep 23 16:18:02 CDT 2011
branch "master" has been updated
via dc4bdbc50de42e3c810f6ea31aa6e6e14b7b56b7 (commit)
from 19678a832f728be13b5230e56b5b5e7db6ddf5d4 (commit)
Summary of changes:
server/src/FileChainedLogOut.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit dc4bdbc50de42e3c810f6ea31aa6e6e14b7b56b7
Author: Kevin P. Fleming <kpfleming at digium.com>
Date: Fri Sep 23 16:17:37 2011 -0500
Make yesterday's change to FileChainedLogout.cpp compile on Linux.
diff --git a/server/src/FileChainedLogOut.cpp b/server/src/FileChainedLogOut.cpp
index 3b56776..a8cb7ad 100644
--- a/server/src/FileChainedLogOut.cpp
+++ b/server/src/FileChainedLogOut.cpp
@@ -35,7 +35,7 @@ void FileChainedLogOut::myLogs(const std::string& name, Level logLevel,
if (!mOut || !mOut.is_open())
{
// open the file
- mOut.open(mLogFile);
+ mOut.open(mLogFile.c_str());
if (mOut.fail())
{
std::cerr << "Logger error opening output file " << mLogFile << " due to: " << strerror(errno) << '\n';
-----------------------------------------------------------------------
--
asterisk-scf/release/logger.git
More information about the asterisk-scf-commits
mailing list