aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-09-17 18:05:21 +0000
committerBill Meier <wmeier@newsguy.com>2012-09-17 18:05:21 +0000
commitcc4e2d3566fd71c186ec5ac29c336896e133bd06 (patch)
tree4575b2013949bc89938ed7697220aa154e767c60 /epan
parent8a82b7a361707d1dbc92f978eb74b504027d3405 (diff)
#include <epan/prefs.h> not req'd.
svn path=/trunk/; revision=44951
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-vntag.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/dissectors/packet-vntag.c b/epan/dissectors/packet-vntag.c
index 649089523f..3ec3e3beb1 100644
--- a/epan/dissectors/packet-vntag.c
+++ b/epan/dissectors/packet-vntag.c
@@ -28,7 +28,6 @@
#include <glib.h>
#include <epan/packet.h>
#include <epan/etypes.h>
-#include <epan/prefs.h>
static int proto_vntag = -1;
@@ -41,7 +40,7 @@ static gint ett_vntag = -1;
static void
dissect_vntag(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
- guint16 encap_proto;
+ guint16 encap_proto;
proto_tree *vntag_tree = NULL;
col_set_str(pinfo->cinfo, COL_PROTOCOL, "VNTAG");