aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llxfer_mem.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llmessage/llxfer_mem.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/linden/indra/llmessage/llxfer_mem.cpp b/linden/indra/llmessage/llxfer_mem.cpp
index 0f055c8..223ce08 100644
--- a/linden/indra/llmessage/llxfer_mem.cpp
+++ b/linden/indra/llmessage/llxfer_mem.cpp
@@ -136,7 +136,7 @@ S32 LLXfer_Mem::processEOF()
136 136
137 if (mCallback) 137 if (mCallback)
138 { 138 {
139 mCallback((void *)mBuffer,mBufferLength,mCallbackDataHandle,mCallbackResult); 139 mCallback((void *)mBuffer,mBufferLength,mCallbackDataHandle,mCallbackResult,LL_EXSTAT_NONE);
140 } 140 }
141 141
142 return(retval); 142 return(retval);
@@ -149,7 +149,7 @@ S32 LLXfer_Mem::initializeRequest(U64 xfer_id,
149 ELLPath remote_path, 149 ELLPath remote_path,
150 const LLHost& remote_host, 150 const LLHost& remote_host,
151 BOOL delete_remote_on_completion, 151 BOOL delete_remote_on_completion,
152 void (*callback)(void*,S32,void**,S32), 152 void (*callback)(void*,S32,void**,S32,LLExtStat),
153 void** user_data) 153 void** user_data)
154{ 154{
155 S32 retval = 0; // presume success 155 S32 retval = 0; // presume success
@@ -218,3 +218,4 @@ U32 LLXfer_Mem::getXferTypeTag()
218 218
219 219
220 220
221