aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fcct.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-08-14 21:08:43 -0400
committerBill Meier <wmeier@newsguy.com>2014-08-15 14:46:45 +0000
commit56bd0a24b5ab3498d50ee34b3dbf45be069e33d7 (patch)
tree2b82c740cad8401191b79b4777849eecd6e450a4 /epan/dissectors/packet-fcct.c
parent494559998b40107faca35f5a1c4c54bbf473dd39 (diff)
Remove unneeded #include; As needed: Add editor modelines & do whitespace changes.
Change-Id: Ib345833114aab0c70fc20b1fc74c90abecec486e Reviewed-on: https://code.wireshark.org/review/3619 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/dissectors/packet-fcct.c')
-rw-r--r--epan/dissectors/packet-fcct.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/epan/dissectors/packet-fcct.c b/epan/dissectors/packet-fcct.c
index 41dd023134..9f18905a22 100644
--- a/epan/dissectors/packet-fcct.c
+++ b/epan/dissectors/packet-fcct.c
@@ -28,7 +28,6 @@
#include <epan/packet.h>
#include <epan/to_str.h>
#include <epan/etypes.h>
-#include <epan/conversation.h>
#include "packet-fc.h"
#include "packet-fcct.h"
@@ -221,10 +220,6 @@ dissect_fcct (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
/* Register the protocol with Wireshark */
-/* this format is require because a script is used to build the C function
- that calls all the protocol registration.
-*/
-
void
proto_register_fcct(void)
{
@@ -285,10 +280,6 @@ proto_register_fcct(void)
FT_UINT8, BASE_HEX);
}
-/* If this dissector uses sub-dissector registration add a registration routine.
- This format is required because a script is used to find these routines and
- create the code that calls these routines.
-*/
void
proto_reg_handoff_fcct (void)
{
@@ -300,4 +291,15 @@ proto_reg_handoff_fcct (void)
data_handle = find_dissector ("data");
}
-
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */