aboutsummaryrefslogtreecommitdiffstats
path: root/packet-fc.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-08-27 23:05:59 +0000
committerGuy Harris <guy@alum.mit.edu>2003-08-27 23:05:59 +0000
commit103e0f1402d30cdedcee6b824bab935bb4d05f84 (patch)
tree6fcda727d207b1f9f272771997a587183cb5a7cb /packet-fc.c
parent2d71f3589d8e2bb2e7b9ef5265d6bf6089a75db6 (diff)
The Fibre Channel dissector doesn't have any tables in which it
registers itself - it's just imported by name. Get rid of the "create_dissector_handle()" call, as the resulting dissector handle isn't ever used. svn path=/trunk/; revision=8287
Diffstat (limited to 'packet-fc.c')
-rw-r--r--packet-fc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/packet-fc.c b/packet-fc.c
index 8a055957bc..f66f3dd036 100644
--- a/packet-fc.c
+++ b/packet-fc.c
@@ -4,7 +4,7 @@
* Copyright 2003 Ronnie Sahlberg, exchange first/last matching and
* tap listener and misc updates
*
- * $Id: packet-fc.c,v 1.14 2003/08/24 01:06:20 guy Exp $
+ * $Id: packet-fc.c,v 1.15 2003/08/27 23:05:59 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1313,9 +1313,5 @@ proto_register_fc(void)
void
proto_reg_handoff_fc (void)
{
- dissector_handle_t fc_handle;
-
- fc_handle = create_dissector_handle (dissect_fc, proto_fc);
-
data_handle = find_dissector("data");
}