diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmessage/llxfer_file.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/llmessage/llxfer_file.cpp b/linden/indra/llmessage/llxfer_file.cpp index 027bacb..840d84c 100644 --- a/linden/indra/llmessage/llxfer_file.cpp +++ b/linden/indra/llmessage/llxfer_file.cpp | |||
@@ -353,7 +353,7 @@ S32 LLXfer_File::processEOF() | |||
353 | } | 353 | } |
354 | else | 354 | else |
355 | { | 355 | { |
356 | //FILE* fp = LLFile::fopen(mTempFilename, "r"); | 356 | //LLFILE* fp = LLFile::fopen(mTempFilename, "r"); |
357 | //llwarns << "File " << mTempFilename << " does " | 357 | //llwarns << "File " << mTempFilename << " does " |
358 | // << (!fp ? "not" : "" ) << " exit." << llendl; | 358 | // << (!fp ? "not" : "" ) << " exit." << llendl; |
359 | //if(fp) fclose(fp); | 359 | //if(fp) fclose(fp); |
@@ -424,8 +424,8 @@ U32 LLXfer_File::getXferTypeTag() | |||
424 | S32 copy_file(const char* from, const char* to) | 424 | S32 copy_file(const char* from, const char* to) |
425 | { | 425 | { |
426 | S32 rv = 0; | 426 | S32 rv = 0; |
427 | FILE* in = LLFile::fopen(from, "rb"); /*Flawfinder: ignore*/ | 427 | LLFILE* in = LLFile::fopen(from, "rb"); /*Flawfinder: ignore*/ |
428 | FILE* out = LLFile::fopen(to, "wb"); /*Flawfinder: ignore*/ | 428 | LLFILE* out = LLFile::fopen(to, "wb"); /*Flawfinder: ignore*/ |
429 | if(in && out) | 429 | if(in && out) |
430 | { | 430 | { |
431 | S32 read = 0; | 431 | S32 read = 0; |