From f645297b23aec41b3e4ea0fa4b86a4c076e93a26 Mon Sep 17 00:00:00 2001 From: Bill Meier Date: Sun, 23 Oct 2011 20:48:47 +0000 Subject: [PATCH] Fix a proto_tree_add_item() encoding arg; Remove some unneeded #includes. svn path=/trunk/; revision=39524 --- epan/dissectors/packet-fcdns.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/epan/dissectors/packet-fcdns.c b/epan/dissectors/packet-fcdns.c index ec3da26486..d80ca792c7 100644 --- a/epan/dissectors/packet-fcdns.c +++ b/epan/dissectors/packet-fcdns.c @@ -27,12 +27,6 @@ # include "config.h" #endif -#include - -#ifdef HAVE_SYS_TYPES_H -# include -#endif - #ifdef HAVE_NETINET_IN_H # include #endif @@ -364,7 +358,7 @@ dissect_fc4type (proto_tree *parent_tree, tvbuff_t *tvb, int offset, int hfindex if(parent_tree){ item=proto_tree_add_item(parent_tree, hfindex, tvb, offset, - 32, TRUE); + 32, ENC_NA); tree=proto_item_add_subtree(item, ett_fc4flags); }