diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-12-02 08:41:08 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-12-02 08:41:08 +0000 |
commit | 0ab8e159b913cf0537df6b407c4cabac9fe196e7 (patch) | |
tree | 459183fb6c07494e3982e6837363d3e4b8f2ba19 /packet-zebra.c | |
parent | 75acffe70c5a17c20324094c15397ff60a8641de (diff) | |
download | wireshark-0ab8e159b913cf0537df6b407c4cabac9fe196e7.tar.gz wireshark-0ab8e159b913cf0537df6b407c4cabac9fe196e7.tar.bz2 wireshark-0ab8e159b913cf0537df6b407c4cabac9fe196e7.zip |
Some tvbuffified dissectors weren't setting "pinfo->current_proto", so
that if they threw an exception, the wrong protocol would be blamed.
Add the missing assignments.
Clean up the extraction of the null-encapsulation header.
svn path=/trunk/; revision=2730
Diffstat (limited to 'packet-zebra.c')
-rw-r--r-- | packet-zebra.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-zebra.c b/packet-zebra.c index f3f1282a57..207a2c93da 100644 --- a/packet-zebra.c +++ b/packet-zebra.c @@ -3,7 +3,7 @@ * * Jochen Friedrich <jochen@scram.de> * - * $Id: packet-zebra.c,v 1.4 2000/11/19 08:54:11 guy Exp $ + * $Id: packet-zebra.c,v 1.5 2000/12/02 08:41:08 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -478,6 +478,8 @@ dissect_zebra(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) CHECK_DISPLAY_AS_DATA(proto_zebra, tvb, pinfo, tree); + pinfo->current_proto = "ZEBRA"; + if (check_col(pinfo->fd, COL_PROTOCOL)) col_set_str(pinfo->fd, COL_PROTOCOL, "ZEBRA"); |