diff options
Diffstat (limited to '')
-rwxr-xr-x | linden/indra/llcrashlogger/llcrashlogger.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/llcrashlogger/llcrashlogger.cpp b/linden/indra/llcrashlogger/llcrashlogger.cpp index d25be55..aac5592 100755 --- a/linden/indra/llcrashlogger/llcrashlogger.cpp +++ b/linden/indra/llcrashlogger/llcrashlogger.cpp | |||
@@ -203,7 +203,7 @@ void LLCrashLogger::gatherFiles() | |||
203 | { | 203 | { |
204 | // Figure out the filename of the second life log | 204 | // Figure out the filename of the second life log |
205 | LLCurl::setCAFile(gDirUtilp->getCAFile()); | 205 | LLCurl::setCAFile(gDirUtilp->getCAFile()); |
206 | mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"Imprudence.log"); | 206 | mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"meta-impy.log"); |
207 | mFileMap["SettingsXml"] = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS,"settings.xml"); | 207 | mFileMap["SettingsXml"] = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS,"settings.xml"); |
208 | } | 208 | } |
209 | 209 | ||
@@ -335,7 +335,7 @@ bool LLCrashLogger::sendCrashLogs() | |||
335 | updateApplication("Sending reports..."); | 335 | updateApplication("Sending reports..."); |
336 | 336 | ||
337 | std::string dump_path = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, | 337 | std::string dump_path = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, |
338 | "ImprudenceCrashReport"); | 338 | "meta-impyCrashReport"); |
339 | std::string report_file = dump_path + ".log"; | 339 | std::string report_file = dump_path + ".log"; |
340 | 340 | ||
341 | std::ofstream out_file(report_file.c_str()); | 341 | std::ofstream out_file(report_file.c_str()); |
@@ -369,10 +369,10 @@ void LLCrashLogger::updateApplication(const std::string& message) | |||
369 | bool LLCrashLogger::init() | 369 | bool LLCrashLogger::init() |
370 | { | 370 | { |
371 | // We assume that all the logs we're looking for reside on the current drive | 371 | // We assume that all the logs we're looking for reside on the current drive |
372 | gDirUtilp->initAppDirs("Imprudence"); | 372 | gDirUtilp->initAppDirs("meta-impy"); |
373 | 373 | ||
374 | // Default to the product name "Imprudence" (this is overridden by the -name argument) | 374 | // Default to the product name "meta-impy" (this is overridden by the -name argument) |
375 | mProductName = "Imprudence"; | 375 | mProductName = "meta-impy"; |
376 | 376 | ||
377 | mCrashSettings.declareS32(CRASH_BEHAVIOR_SETTING, CRASH_BEHAVIOR_ASK, "Controls behavior when viewer crashes " | 377 | mCrashSettings.declareS32(CRASH_BEHAVIOR_SETTING, CRASH_BEHAVIOR_ASK, "Controls behavior when viewer crashes " |
378 | "(0 = ask before sending crash report, 1 = always send crash report, 2 = never send crash report)"); | 378 | "(0 = ask before sending crash report, 1 = always send crash report, 2 = never send crash report)"); |
@@ -394,7 +394,7 @@ bool LLCrashLogger::init() | |||
394 | //If we've opened the crash logger, assume we can delete the marker file if it exists | 394 | //If we've opened the crash logger, assume we can delete the marker file if it exists |
395 | if( gDirUtilp ) | 395 | if( gDirUtilp ) |
396 | { | 396 | { |
397 | std::string marker_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"Imprudence.exec_marker"); | 397 | std::string marker_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"meta-impy.exec_marker"); |
398 | LLAPRFile::remove( marker_file ); | 398 | LLAPRFile::remove( marker_file ); |
399 | } | 399 | } |
400 | 400 | ||