diff options
author | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
commit | 2a4dea528f670b9bb1f77ef27a8a1dd16603d114 (patch) | |
tree | 95c68e362703c9099d571ecbdc6142b1cda1e005 /linden/indra/newview/lllogchat.cpp | |
parent | Second Life viewer sources 1.20.6 (diff) | |
download | meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.zip meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.gz meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.bz2 meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.xz |
Second Life viewer sources 1.20.7
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/lllogchat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/lllogchat.cpp b/linden/indra/newview/lllogchat.cpp index 7be9781..38c4869 100644 --- a/linden/indra/newview/lllogchat.cpp +++ b/linden/indra/newview/lllogchat.cpp | |||
@@ -76,7 +76,7 @@ void LLLogChat::saveHistory(LLString filename, LLString line) | |||
76 | return; | 76 | return; |
77 | } | 77 | } |
78 | 78 | ||
79 | FILE* fp = LLFile::fopen(LLLogChat::makeLogFileName(filename).c_str(), "a"); /*Flawfinder: ignore*/ | 79 | LLFILE* fp = LLFile::fopen(LLLogChat::makeLogFileName(filename).c_str(), "a"); /*Flawfinder: ignore*/ |
80 | if (!fp) | 80 | if (!fp) |
81 | { | 81 | { |
82 | llinfos << "Couldn't open chat history log!" << llendl; | 82 | llinfos << "Couldn't open chat history log!" << llendl; |
@@ -96,7 +96,7 @@ void LLLogChat::loadHistory(LLString filename , void (*callback)(ELogLineType,LL | |||
96 | llerrs << "Filename is Empty!" << llendl; | 96 | llerrs << "Filename is Empty!" << llendl; |
97 | } | 97 | } |
98 | 98 | ||
99 | FILE* fptr = LLFile::fopen(makeLogFileName(filename).c_str(), "r"); /*Flawfinder: ignore*/ | 99 | LLFILE* fptr = LLFile::fopen(makeLogFileName(filename).c_str(), "r"); /*Flawfinder: ignore*/ |
100 | if (!fptr) | 100 | if (!fptr) |
101 | { | 101 | { |
102 | //LLUIString message = LLFloaterChat::getInstance()->getUIString("IM_logging_string"); | 102 | //LLUIString message = LLFloaterChat::getInstance()->getUIString("IM_logging_string"); |