aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llxfer_file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llmessage/llxfer_file.cpp')
-rw-r--r--linden/indra/llmessage/llxfer_file.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/llmessage/llxfer_file.cpp b/linden/indra/llmessage/llxfer_file.cpp
index da12d54..c56ea98 100644
--- a/linden/indra/llmessage/llxfer_file.cpp
+++ b/linden/indra/llmessage/llxfer_file.cpp
@@ -67,7 +67,7 @@ LLXfer_File::LLXfer_File (const std::string& local_filename, BOOL delete_local_o
67 67
68LLXfer_File::~LLXfer_File () 68LLXfer_File::~LLXfer_File ()
69{ 69{
70 free(); 70 cleanup();
71} 71}
72 72
73/////////////////////////////////////////////////////////// 73///////////////////////////////////////////////////////////
@@ -95,7 +95,7 @@ void LLXfer_File::init (const std::string& local_filename, BOOL delete_local_on_
95 95
96/////////////////////////////////////////////////////////// 96///////////////////////////////////////////////////////////
97 97
98void LLXfer_File::free () 98void LLXfer_File::cleanup ()
99{ 99{
100 if (mFp) 100 if (mFp)
101 { 101 {
@@ -115,7 +115,7 @@ void LLXfer_File::free ()
115 lldebugs << "Keeping local file: " << mLocalFilename << llendl; 115 lldebugs << "Keeping local file: " << mLocalFilename << llendl;
116 } 116 }
117 117
118 LLXfer::free(); 118 LLXfer::cleanup();
119} 119}
120 120
121/////////////////////////////////////////////////////////// 121///////////////////////////////////////////////////////////