Commit 079b6b07 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

rpcrt4: Add a FIXME for unsupported client protocol sequences.

parent ee7bf795
......@@ -1293,7 +1293,10 @@ RPC_STATUS RPCRT4_CreateConnection(RpcConnection** Connection, BOOL server,
ops = rpcrt4_get_conn_protseq_ops(Protseq);
if (!ops)
{
FIXME("not supported for protseq %s\n", Protseq);
return RPC_S_PROTSEQ_NOT_SUPPORTED;
}
NewConnection = ops->alloc();
NewConnection->Next = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment