diff options
author | Tim Potter <tpot@samba.org> | 2003-07-08 05:29:42 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-07-08 05:29:42 +0000 |
commit | db76d479521b412c5073e828becfa37dab099716 (patch) | |
tree | 9580dc56419ab73470d52b2c1d8f5736d9aed3ba /epan/frame_data.h | |
parent | 05330d4ac978c30fe21ddc62c36e6f5f13c533e4 (diff) | |
download | wireshark-db76d479521b412c5073e828becfa37dab099716.tar.gz wireshark-db76d479521b412c5073e828becfa37dab099716.tar.bz2 wireshark-db76d479521b412c5073e828becfa37dab099716.zip |
Added prototype for p_rem_proto_data()
Fixed bug in said function which prevented it from actually working.
svn path=/trunk/; revision=7982
Diffstat (limited to 'epan/frame_data.h')
-rw-r--r-- | epan/frame_data.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/frame_data.h b/epan/frame_data.h index 8fd1cdff38..d2009e4275 100644 --- a/epan/frame_data.h +++ b/epan/frame_data.h @@ -1,7 +1,7 @@ /* frame_data.h * Definitions for frame_data structures and routines * - * $Id: frame_data.h,v 1.7 2002/08/28 20:40:44 jmayer Exp $ + * $Id: frame_data.h,v 1.8 2003/07/08 05:29:42 tpot Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -67,6 +67,7 @@ typedef struct { extern void p_add_proto_data(frame_data *, int, void *); extern void *p_get_proto_data(frame_data *, int); +extern void p_rem_proto_data(frame_data *fd, int proto); /* An init routine to be called by epan_init */ extern void frame_data_init(void); |