aboutsummaryrefslogtreecommitdiffstats
path: root/packet-cpha.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-28 20:02:34 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-28 20:02:34 +0000
commit9847397b6bd55376efa6d914b90d16f4f972b9a6 (patch)
treeedef9eea707cb66e01f995db8907b00939aab6c0 /packet-cpha.c
parent224f51edd989df54ae331f2e5e22aba4a7296b4d (diff)
Fix from Yaniv Kaul.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6114 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-cpha.c')
-rw-r--r--packet-cpha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-cpha.c b/packet-cpha.c
index bc2cbaf1a1..243a4a9b6a 100644
--- a/packet-cpha.c
+++ b/packet-cpha.c
@@ -2,7 +2,7 @@
* Routines for the Check Point High-Availability Protocol (CPHAP)
* Copyright 2002, Yaniv Kaul <ykaul-at-netvision.net.il>
*
- * $Id: packet-cpha.c,v 1.2 2002/08/20 22:56:29 guy Exp $
+ * $Id: packet-cpha.c,v 1.3 2002/08/28 20:02:34 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -412,7 +412,7 @@ static void dissect_conf_reply(tvbuff_t * tvb, int offset, proto_tree * tree) {
proto_tree_add_ether(tree, hf_ethernet_add, tvb, offset, 6, hdr.ethernet_add);
offset += 6;
- proto_tree_add_boolean(tree, hdr.is_if_trusted, tvb, offset, sizeof(hdr.is_if_trusted), hdr.is_if_trusted);
+ proto_tree_add_boolean(tree, hf_is_if_trusted, tvb, offset, sizeof(hdr.is_if_trusted), hdr.is_if_trusted);
offset += sizeof(hdr.is_if_trusted);
proto_tree_add_ipv4(tree, hf_ip, tvb, offset, sizeof(hdr.ip), hdr.ip);