aboutsummaryrefslogtreecommitdiffstats
path: root/packet-fc.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-24 01:06:21 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-24 01:06:21 +0000
commit9f137928e9bd4dae4fc1bafb91570a2c87b96991 (patch)
tree412ef781e9e1e7944173b141d38c2d8f656e209c /packet-fc.c
parentfd819c337d3761af866d21769ad3d36dad7b60f6 (diff)
FC addresses are no longer extracted into guint32s, so "fc32_to_str()"
is no longer needed. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8226 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-fc.c')
-rw-r--r--packet-fc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-fc.c b/packet-fc.c
index 30c7feb460..8a055957bc 100644
--- a/packet-fc.c
+++ b/packet-fc.c
@@ -4,7 +4,7 @@
* Copyright 2003 Ronnie Sahlberg, exchange first/last matching and
* tap listener and misc updates
*
- * $Id: packet-fc.c,v 1.13 2003/08/23 13:35:05 sahlberg Exp $
+ * $Id: packet-fc.c,v 1.14 2003/08/24 01:06:20 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -943,17 +943,17 @@ dissect_fc (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
/* XXX - use "fc_wka_vals[]" on this? */
proto_tree_add_string (fc_tree, hf_fc_did, tvb, offset+1, 3,
- fc32_to_str (&fchdr.d_id));
+ fc_to_str (fchdr.d_id.data));
proto_tree_add_string_hidden (fc_tree, hf_fc_id, tvb, offset+1, 3,
- fc32_to_str (&fchdr.d_id));
+ fc_to_str (fchdr.d_id.data));
proto_tree_add_uint (fc_tree, hf_fc_csctl, tvb, offset+4, 1, fchdr.cs_ctl);
/* XXX - use "fc_wka_vals[]" on this? */
proto_tree_add_string (fc_tree, hf_fc_sid, tvb, offset+5, 3,
- fc32_to_str (&fchdr.s_id));
+ fc_to_str (fchdr.s_id.data));
proto_tree_add_string_hidden (fc_tree, hf_fc_id, tvb, offset+5, 3,
- fc32_to_str (&fchdr.s_id));
+ fc_to_str (fchdr.s_id.data));
if (ftype == FC_FTYPE_LINKCTL) {
if (((fchdr.r_ctl & 0x0F) == FC_LCTL_FBSYB) ||