summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utilities.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utilities.cpp b/utilities.cpp
index dd2ee41..cf909d2 100644
--- a/utilities.cpp
+++ b/utilities.cpp
@@ -359,7 +359,7 @@ int onSendFile(WPARAM w, LPARAM l)
{
CCSDATA *ccs=(CCSDATA*)l;
if(!bFileTransfers)
- return CallService(ccs->szProtoService, w, l);
+ return CallService(MS_PROTO_CHAINSEND, w, l);
if(isContactSecured(ccs->hContact))
{
TCHAR **file=(TCHAR **)ccs->lParam;
@@ -440,7 +440,7 @@ int onSendFile(WPARAM w, LPARAM l)
transfers.push_back(path_out);
}
}
- return CallService(ccs->szProtoService, w, l);
+ return CallService(MS_PROTO_CHAINSEND, w, l);
}
void storeOutput(HANDLE ahandle, string *output)