diff options
author | Laurent Deniel <laurent.deniel@free.fr> | 1999-10-16 19:36:56 +0000 |
---|---|---|
committer | Laurent Deniel <laurent.deniel@free.fr> | 1999-10-16 19:36:56 +0000 |
commit | 8c20e30ae07cfb8b599176aab0c7242eed813d61 (patch) | |
tree | 1cac8d7c6552cf038aea9aa96d172d8fd940bbca /packet-fddi.c | |
parent | f646f88a5e738b19071c159cbb4c056635c101a0 (diff) | |
download | wireshark-8c20e30ae07cfb8b599176aab0c7242eed813d61.tar.gz wireshark-8c20e30ae07cfb8b599176aab0c7242eed813d61.tar.bz2 wireshark-8c20e30ae07cfb8b599176aab0c7242eed813d61.zip |
Fix bit-swapped src address field name assignment.
svn path=/trunk/; revision=861
Diffstat (limited to 'packet-fddi.c')
-rw-r--r-- | packet-fddi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-fddi.c b/packet-fddi.c index 5c9fb308e5..e5513a7b77 100644 --- a/packet-fddi.c +++ b/packet-fddi.c @@ -3,7 +3,7 @@ * * Laurent Deniel <deniel@worldnet.fr> * - * $Id: packet-fddi.c,v 1.22 1999/10/12 06:20:05 gram Exp $ + * $Id: packet-fddi.c,v 1.23 1999/10/16 19:36:56 deniel Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -304,7 +304,7 @@ void dissect_fddi(const u_char *pd, frame_data *fd, proto_tree *tree, /* hide some bit-swapped mac address fields in the proto_tree, just in case */ proto_tree_add_item_hidden(fh_tree, hf_fddi_dst, FDDI_P_DHOST, 6, dst_swapped); - proto_tree_add_item_hidden(fh_tree, hf_fddi_dst, FDDI_P_SHOST, 6, src_swapped); + proto_tree_add_item_hidden(fh_tree, hf_fddi_src, FDDI_P_SHOST, 6, src_swapped); } switch (fc) { |