aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-01-03 21:52:40 +0000
committerGuy Harris <guy@alum.mit.edu>2001-01-03 21:52:40 +0000
commit5c41d2e842c056979345fdf9b3aac4ba51067cff (patch)
treeca0dcf236d752fc2367e777ff97b91493ceb53ce
parent5b7f184296c4e10f933d0448f40d267fb1b583f7 (diff)
"hf_sna_rh_csi" is now an FT_UINT8 field, so add it with
"proto_tree_add_uint()", not "proto_tree_add_boolean()". svn path=/trunk/; revision=2818
-rw-r--r--packet-sna.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-sna.c b/packet-sna.c
index 0f3b089a99..1eabad9aaa 100644
--- a/packet-sna.c
+++ b/packet-sna.c
@@ -2,7 +2,7 @@
* Routines for SNA
* Gilbert Ramirez <gram@xiexie.org>
*
- * $Id: packet-sna.c,v 1.21 2001/01/03 16:41:07 gram Exp $
+ * $Id: packet-sna.c,v 1.22 2001/01/03 21:52:40 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -885,7 +885,7 @@ dissect_rh (const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
proto_tree_add_boolean(bf_tree, hf_sna_rh_bbi, NullTVB, offset, 1, rh_2);
proto_tree_add_boolean(bf_tree, hf_sna_rh_ebi, NullTVB, offset, 1, rh_2);
proto_tree_add_boolean(bf_tree, hf_sna_rh_cdi, NullTVB, offset, 1, rh_2);
- proto_tree_add_boolean(bf_tree, hf_sna_rh_csi, NullTVB, offset, 1, rh_2);
+ proto_tree_add_uint(bf_tree, hf_sna_rh_csi, NullTVB, offset, 1, rh_2);
proto_tree_add_boolean(bf_tree, hf_sna_rh_edi, NullTVB, offset, 1, rh_2);
proto_tree_add_boolean(bf_tree, hf_sna_rh_pdi, NullTVB, offset, 1, rh_2);
proto_tree_add_boolean(bf_tree, hf_sna_rh_cebi, NullTVB, offset, 1, rh_2);