aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rpc.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-07-29 07:30:58 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-07-29 07:30:58 +0000
commita12e8f37fb5e84724028fd60c94b2297847a9f06 (patch)
tree915da538bce0bbd7cd6d0489fa16f9cef4b52db0 /packet-rpc.c
parent04a580a8ee76da7e9ed618aa19b1143cad0ba094 (diff)
Update to RPC, prettiry the presentation of duplicates.
Only cosmetic changes, no functionality change. svn path=/trunk/; revision=8090
Diffstat (limited to 'packet-rpc.c')
-rw-r--r--packet-rpc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-rpc.c b/packet-rpc.c
index 0470ffc973..b1248f25a6 100644
--- a/packet-rpc.c
+++ b/packet-rpc.c
@@ -2,7 +2,7 @@
* Routines for rpc dissection
* Copyright 1999, Uwe Girlich <Uwe.Girlich@philosys.de>
*
- * $Id: packet-rpc.c,v 1.133 2003/07/22 11:51:20 sahlberg Exp $
+ * $Id: packet-rpc.c,v 1.134 2003/07/29 07:30:58 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2011,7 +2011,7 @@ dissect_rpc_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
Mark it as such. */
if (check_col(pinfo->cinfo, COL_INFO)) {
col_append_fstr(pinfo->cinfo, COL_INFO,
- " dup XID 0x%x", xid);
+ " dup to #%d", rpc_call->req_num);
}
proto_tree_add_item(rpc_tree,
hf_rpc_dup, tvb, 0,0, TRUE);
@@ -2184,7 +2184,7 @@ dissect_rpc_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
Mark it as such. */
if (check_col(pinfo->cinfo, COL_INFO)) {
col_append_fstr(pinfo->cinfo, COL_INFO,
- " dup XID 0x%x", xid);
+ " dup to #%d", rpc_call->rep_num);
}
proto_tree_add_item(rpc_tree,
hf_rpc_dup, tvb, 0,0, TRUE);
@@ -3342,10 +3342,10 @@ proto_register_rpc(void)
"Duplicate Call/Reply", "rpc.dup", FT_NONE, BASE_NONE,
NULL, 0, "Duplicate Call/Reply", HFILL }},
{ &hf_rpc_call_dup, {
- "Duplicate call to frame", "rpc.call.dup", FT_FRAMENUM, BASE_DEC,
+ "Duplicate to the call in", "rpc.call.dup", FT_FRAMENUM, BASE_DEC,
NULL, 0, "This is a duplicate to the call in frame", HFILL }},
{ &hf_rpc_reply_dup, {
- "Duplicate reply to frame", "rpc.reply.dup", FT_FRAMENUM, BASE_DEC,
+ "Duplicate to the reply in", "rpc.reply.dup", FT_FRAMENUM, BASE_DEC,
NULL, 0, "This is a duplicate to the reply in frame", HFILL }},
{ &hf_rpc_value_follows, {
"Value Follows", "rpc.value_follows", FT_BOOLEAN, BASE_NONE,