diff options
-rw-r--r-- | ChangeLog.txt | 4 | ||||
-rwxr-xr-x | linden/indra/llcrashlogger/llcrashlogger.cpp | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index 2e090b4..15d5e13 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt | |||
@@ -1,6 +1,10 @@ | |||
1 | 2008-11-18 Jacek Antonelli <jacek.antonelli@gmail.com> | 1 | 2008-11-18 Jacek Antonelli <jacek.antonelli@gmail.com> |
2 | 2 | ||
3 | * linden/indra/llcrashlogger/llcrashlogger.cpp: | 3 | * linden/indra/llcrashlogger/llcrashlogger.cpp: |
4 | Changed to Imprudence.exec_marker to match llappviewer.cpp. | ||
5 | |||
6 | |||
7 | * linden/indra/llcrashlogger/llcrashlogger.cpp: | ||
4 | Changed app dir (for cache, etc.) to Imprudence. | 8 | Changed app dir (for cache, etc.) to Imprudence. |
5 | * linden/indra/llvfs/lldir.cpp: | 9 | * linden/indra/llvfs/lldir.cpp: |
6 | Ditto. | 10 | Ditto. |
diff --git a/linden/indra/llcrashlogger/llcrashlogger.cpp b/linden/indra/llcrashlogger/llcrashlogger.cpp index 2fffc7f..af30136 100755 --- a/linden/indra/llcrashlogger/llcrashlogger.cpp +++ b/linden/indra/llcrashlogger/llcrashlogger.cpp | |||
@@ -341,7 +341,7 @@ bool LLCrashLogger::init() | |||
341 | //Run through command line options | 341 | //Run through command line options |
342 | if(getOption("previous").isDefined()) | 342 | if(getOption("previous").isDefined()) |
343 | { | 343 | { |
344 | llinfos << "Previous execution did not remove SecondLife.exec_marker" << llendl; | 344 | llinfos << "Previous execution did not remove Imprudence.exec_marker" << llendl; |
345 | mCrashInPreviousExec = TRUE; | 345 | mCrashInPreviousExec = TRUE; |
346 | } | 346 | } |
347 | 347 | ||
@@ -371,7 +371,7 @@ bool LLCrashLogger::init() | |||
371 | //If we've opened the crash logger, assume we can delete the marker file if it exists | 371 | //If we've opened the crash logger, assume we can delete the marker file if it exists |
372 | if( gDirUtilp ) | 372 | if( gDirUtilp ) |
373 | { | 373 | { |
374 | std::string marker_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"SecondLife.exec_marker"); | 374 | std::string marker_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"Imprudence.exec_marker"); |
375 | ll_apr_file_remove( marker_file ); | 375 | ll_apr_file_remove( marker_file ); |
376 | } | 376 | } |
377 | 377 | ||