From 5c41d2e842c056979345fdf9b3aac4ba51067cff Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Wed, 3 Jan 2001 21:52:40 +0000 Subject: [PATCH] "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 --- packet-sna.c | 4 ++-- 1 file 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 * - * $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 @@ -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);