From c2456b8f4ab5727feea58a556b594d5d0fc09a97 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Mon, 4 Jun 2007 07:24:55 +0000 Subject: [PATCH] there is no longer a FINISHED pdu in the protocol svn path=/trunk/; revision=22034 --- epan/dissectors/packet-ctdb.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/epan/dissectors/packet-ctdb.c b/epan/dissectors/packet-ctdb.c index 99b10bff3e..139351f7ba 100644 --- a/epan/dissectors/packet-ctdb.c +++ b/epan/dissectors/packet-ctdb.c @@ -84,15 +84,14 @@ typedef struct _ctdb_trans_t { } ctdb_trans_t; -#define CTDB_REQ_CALL 0 -#define CTDB_REPLY_CALL 1 +#define CTDB_REQ_CALL 0 +#define CTDB_REPLY_CALL 1 #define CTDB_REQ_DMASTER 2 #define CTDB_REPLY_DMASTER 3 #define CTDB_REPLY_ERROR 4 #define CTDB_REQ_MESSAGE 5 -#define CTDB_REQ_FINISHED 6 -#define CTDB_REQ_CONTROL 7 -#define CTDB_REPLY_CONTROL 8 +#define CTDB_REQ_CONTROL 6 +#define CTDB_REPLY_CONTROL 7 static const value_string ctdb_opcodes[] = { {CTDB_REQ_CALL, "CTDB_REQ_CALL"}, {CTDB_REPLY_CALL, "CTDB_REPLY_CALL"}, @@ -100,7 +99,6 @@ static const value_string ctdb_opcodes[] = { {CTDB_REPLY_DMASTER, "CTDB_REPLY_DMASTER"}, {CTDB_REPLY_ERROR, "CTDB_REPLY_ERROR"}, {CTDB_REQ_MESSAGE, "CTDB_REQ_MESSAGE"}, - {CTDB_REQ_FINISHED, "CTDB_REQ_FINISHED"}, {CTDB_REQ_CONTROL, "CTDB_REQ_CONTROL"}, {CTDB_REPLY_CONTROL, "CTDB_REPLY_CONTROL"}, {0,NULL} @@ -694,8 +692,6 @@ dissect_ctdb(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree) break; case CTDB_REQ_MESSAGE: break; - case CTDB_REQ_FINISHED: - break; case CTDB_REQ_CONTROL: offset=dissect_ctdb_req_control(tvb, offset, pinfo, tree, reqid, endianess); break;