freebsd-ports/comms/aprsd/files/patch-src_utils.cpp
Diane Bruce 86b4c48051 - aprsd is a server daemon that provides Internet gateway and client
access to amateur radio APRS packet data.
2008-01-24 18:23:27 +00:00

36 lines
1.2 KiB
C++

--- src/utils.cpp.orig 2003-10-01 12:58:27.000000000 -0400
+++ src/utils.cpp 2008-01-22 21:54:44.000000000 -0500
@@ -41,6 +41,7 @@
static RecursiveMutex pmtxLog;
+const string LOGPATH("%%LOGPATH%%");
int WriteLog(const string& sp, const string& LogFile)
{
@@ -50,11 +51,12 @@
static Lock locker(pmtxLog, false);
locker.get();
+ string pLogFile = LOGPATH + LogFile;
- ofstream ofs(LogFile.c_str(), ios::out | ios::app);
+ ofstream ofs(pLogFile.c_str(), ios::out | ios::app);
if (!ofs)
- cerr << "File I/O Error: Unable to open/create file " << LogFile << endl;
+ cerr << "File I/O Error: Unable to open/create file " << pLogFile << endl;
time(&ltime); // Timestamp
ctime_r(&ltime, szTime); // "threadsafe" ctime
@@ -91,8 +93,8 @@
pthread_mutex_lock(pmtxLog);
- char* pLogFile = new char[CONFPATH.length() + strlen(LogFile) +1];
- strcpy(pLogFile,CONFPATH.c_str());
+ char* pLogFile = new char[LOGPATH.length() + strlen(LogFile) +1];
+ strcpy(pLogFile,LOGPATH.c_str());
strcat(pLogFile, LogFile);
f = fopen(pLogFile, "a");