Rob Shearman : rpcrt4: Make the fixme for an unhandled packet type more useful by printing the code of the unhandled packet type .

Alexandre Julliard julliard at wine.codeweavers.com
Tue Jan 23 06:18:31 CST 2007


Module: wine
Branch: master
Commit: 9fb15b41055ac746285b50c0e6cd01d1c32f4bda
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9fb15b41055ac746285b50c0e6cd01d1c32f4bda

Author: Rob Shearman <rob at codeweavers.com>
Date:   Mon Jan 22 21:50:31 2007 +0000

rpcrt4: Make the fixme for an unhandled packet type more useful by printing the code of the unhandled packet type.

---

 dlls/rpcrt4/rpc_server.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/rpcrt4/rpc_server.c b/dlls/rpcrt4/rpc_server.c
index 84090aa..b8050e8 100644
--- a/dlls/rpcrt4/rpc_server.c
+++ b/dlls/rpcrt4/rpc_server.c
@@ -287,7 +287,7 @@ static void RPCRT4_process_packet(RpcCon
       break;
 
     default:
-      FIXME("unhandled packet type\n");
+      FIXME("unhandled packet type %u\n", hdr->common.ptype);
       break;
   }
 




More information about the wine-cvs mailing list