cliprdr/server: Server-side file content receiving used wrong callback

This commit is contained in:
Martin Fleisz 2015-10-29 12:45:12 +01:00
parent 9520017b51
commit 25b1e39460
1 changed files with 2 additions and 2 deletions

View File

@ -1004,9 +1004,9 @@ static UINT cliprdr_server_receive_filecontents_response(CliprdrServerContext* c
response.cbRequested = header->dataLen - 4;
response.requestedData = Stream_Pointer(s); /* requestedFileContentsData */
IFCALLRET(context->ServerFileContentsResponse, error, context, &response);
IFCALLRET(context->ClientFileContentsResponse, error, context, &response);
if (error)
WLog_ERR(TAG, "ServerFileContentsResponse failed with error %lu!", error);
WLog_ERR(TAG, "ClientFileContentsResponse failed with error %lu!", error);
return error;
}