diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-01-03 21:52:40 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-01-03 21:52:40 +0000 |
commit | 5c41d2e842c056979345fdf9b3aac4ba51067cff (patch) | |
tree | ca0dcf236d752fc2367e777ff97b91493ceb53ce /packet-sna.c | |
parent | 5b7f184296c4e10f933d0448f40d267fb1b583f7 (diff) | |
download | wireshark-5c41d2e842c056979345fdf9b3aac4ba51067cff.tar.gz wireshark-5c41d2e842c056979345fdf9b3aac4ba51067cff.tar.bz2 wireshark-5c41d2e842c056979345fdf9b3aac4ba51067cff.zip |
"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
Diffstat (limited to 'packet-sna.c')
-rw-r--r-- | packet-sna.c | 4 |
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); |