From 079b6b074c0b5472035062873cb628cf11f21d32 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Wed, 15 Nov 2006 01:00:06 +0000 Subject: [PATCH] rpcrt4: Add a FIXME for unsupported client protocol sequences. --- dlls/rpcrt4/rpc_transport.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/rpcrt4/rpc_transport.c b/dlls/rpcrt4/rpc_transport.c index 9d8483962aa..8dc78af375a 100644 --- a/dlls/rpcrt4/rpc_transport.c +++ b/dlls/rpcrt4/rpc_transport.c @@ -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; -- 2.11.4.GIT