aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ncp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-15 21:37:19 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-15 21:37:19 +0000
commitba9ebf69297bdeab5b47212afe667b7ffcefcacd (patch)
tree746e59fbd40130d551ddf38562b26b2e40b43c3b /packet-ncp.c
parent69efdfabf8c261c357c5977a32b91a1723f8daca (diff)
Get rid of the "Connection Number High" entry - the "Connection Number"
entry covers both bytes of the connection number (as well as the number in the middle - alas, there's no way to create a protocol tree item that covers a discontiguous range of bytes). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5480 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ncp.c')
-rw-r--r--packet-ncp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/packet-ncp.c b/packet-ncp.c
index f36b6f20f7..7a94043a86 100644
--- a/packet-ncp.c
+++ b/packet-ncp.c
@@ -3,7 +3,7 @@
* Gilbert Ramirez <gram@alumni.rice.edu>
* Modified to allow NCP over TCP/IP decodes by James Coe <jammer@cin.net>
*
- * $Id: packet-ncp.c,v 1.59 2002/05/15 21:17:21 guy Exp $
+ * $Id: packet-ncp.c,v 1.60 2002/05/15 21:37:19 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -253,8 +253,6 @@ dissect_ncp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree_add_uint(ncp_tree, hf_ncp_seq, tvb, commhdr + 2, 1, header.sequence);
proto_tree_add_uint(ncp_tree, hf_ncp_connection,tvb, commhdr + 3, 3, nw_connection);
proto_tree_add_item(ncp_tree, hf_ncp_task, tvb, commhdr + 4, 1, FALSE);
- proto_tree_add_text(ncp_tree, tvb, commhdr + 5, 1,
- "Connection Number High: %u", header.conn_high);
break;
case NCP_BURST_MODE_XFER: /* Packet Burst Packet */