server: Remove special handling of STATUS_MORE_PROCESSING_REQUIRED.

This was used to implement AcceptEx() using multiple APCs, and made obsolete by
0bbd3f6617.

Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2021-07-05 11:20:02 -05:00 committed by Alexandre Julliard
parent bedd92ca06
commit e2b9131bd9
1 changed files with 0 additions and 1 deletions

View File

@ -396,7 +396,6 @@ void async_set_result( struct object *obj, unsigned int status, apc_param_t tota
if (async->timeout) remove_timeout_user( async->timeout );
async->timeout = NULL;
async->status = status;
if (status == STATUS_MORE_PROCESSING_REQUIRED) return; /* don't report the completion */
if (async->data.apc)
{