diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-04-15 09:18:45 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-04-15 09:18:45 +0000 |
commit | 846213236a59fc082c038e9d5e13efb4bfd81c36 (patch) | |
tree | 71b316224fc091c622529aa3c78b34fc7b7706c8 | |
parent | 5f89c1d71531aaf70749107baa6f88a48d42e112 (diff) | |
download | wireshark-846213236a59fc082c038e9d5e13efb4bfd81c36.tar.gz wireshark-846213236a59fc082c038e9d5e13efb4bfd81c36.tar.bz2 wireshark-846213236a59fc082c038e9d5e13efb4bfd81c36.zip |
The Vines Fragmentation Protocol dissector is called only through
dissector tables, so it doesn't need to check whether that protocol is
disabled or to set "pinfo->current_proto".
svn path=/trunk/; revision=3307
-rw-r--r-- | packet-vines.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/packet-vines.c b/packet-vines.c index d63222aef8..8fd7625b80 100644 --- a/packet-vines.c +++ b/packet-vines.c @@ -1,7 +1,7 @@ /* packet-vines.c * Routines for Banyan VINES protocol packet disassembly * - * $Id: packet-vines.c,v 1.26 2001/04/01 06:32:09 hagbard Exp $ + * $Id: packet-vines.c,v 1.27 2001/04/15 09:18:45 guy Exp $ * * Don Lafontaine <lafont02@cn.ca> * @@ -91,10 +91,6 @@ dissect_vines_frp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) gchar frp_flags_str[32]; tvbuff_t *next_tvb; - CHECK_DISPLAY_AS_DATA(proto_vines_frp, tvb, pinfo, tree); - - pinfo->current_proto = "Vines FRP"; - if (check_col(pinfo->fd, COL_PROTOCOL)) col_set_str(pinfo->fd, COL_PROTOCOL, "Vines FRP"); if (check_col(pinfo->fd, COL_INFO)) |