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/llmessage/llxfer_file.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/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; |