From 3355fdf0f3b7f848c38d9b109df7644ea96a08de Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 5 May 2002 22:30:39 +0000 Subject: [PATCH] Fix the declaration of pointers to "tcp_dissect_pdus()". svn path=/trunk/; revision=5400 --- plugins/plugin_table.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/plugin_table.h b/plugins/plugin_table.h index 19a7e140f5..c5ba8763fd 100644 --- a/plugins/plugin_table.h +++ b/plugins/plugin_table.h @@ -1,7 +1,7 @@ /* plugin_table.h * Table of exported addresses for Ethereal plugins. * - * $Id: plugin_table.h,v 1.46 2002/05/05 00:34:12 guy Exp $ + * $Id: plugin_table.h,v 1.47 2002/05/05 22:30:39 guy Exp $ * * Ethereal - Network traffic analyzer * Copyright 2000 by Gilbert Ramirez @@ -73,7 +73,7 @@ typedef int (*addr_call_dissector)(dissector_handle_t, tvbuff_t *, packet_info *, proto_tree *); typedef void (*addr_tcp_dissect_pdus)(tvbuff_t *, packet_info *, proto_tree *, - gboolean, int, guint (*)(tvbuff_t *, int), + gboolean, guint, guint (*)(tvbuff_t *, int), void (*)(tvbuff_t *, packet_info *, proto_tree *)); typedef gboolean (*addr_proto_is_protocol_enabled)(int);