diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-02-19 03:43:08 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-02-19 03:43:08 +0000 |
commit | 51f8197b51918aa20536f4343b4de11700204764 (patch) | |
tree | e1d19bec5a039f00bdc90edbbfd9b8ae67a01912 /rpc_defrag.h | |
parent | bcaa0c5c580566f88fcd380f2cfa596d634a3a7c (diff) | |
download | wireshark-51f8197b51918aa20536f4343b4de11700204764.tar.gz wireshark-51f8197b51918aa20536f4343b4de11700204764.tar.bz2 wireshark-51f8197b51918aa20536f4343b4de11700204764.zip |
Fix the declaration of "rec_dissector_t" to include a return value type.
svn path=/trunk/; revision=4756
Diffstat (limited to 'rpc_defrag.h')
-rw-r--r-- | rpc_defrag.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc_defrag.h b/rpc_defrag.h index 2f7dc29876..82a5f87d0a 100644 --- a/rpc_defrag.h +++ b/rpc_defrag.h @@ -1,7 +1,7 @@ /* rpc-defrag.h * Declarations for RPC defragmentation * - * $Id: rpc_defrag.h,v 1.1 2002/02/18 23:51:55 guy Exp $ + * $Id: rpc_defrag.h,v 1.2 2002/02/19 03:43:08 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -31,7 +31,7 @@ #define RPC_RM_LASTFRAG 0x80000000L #define RPC_RM_FRAGLEN 0x7fffffffL -typedef (*rec_dissector_t)(tvbuff_t *, packet_info *, proto_tree *, +typedef gboolean (*rec_dissector_t)(tvbuff_t *, packet_info *, proto_tree *, tvbuff_t *, fragment_data *, gboolean, guint32); extern void show_rpc_fraginfo(tvbuff_t *tvb, tvbuff_t *frag_tvb, |