aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-09-09 21:04:15 +0000
committerGuy Harris <guy@alum.mit.edu>2002-09-09 21:04:15 +0000
commitac69a72fda54ebc96ca4652b059208c0cdf9633a (patch)
tree9f1428595a5708196537277c9cd5107faec6a7ca /epan/epan.h
parent5e8ecbaf4650a35ee0c3e9240bbcedb7def95e2c (diff)
"dfilter_prime_proto_tree()" doesn't modify the "dfilter_t" to which
it's handed a pointer, which means that "epan_dissect_prime_dfilter()" doesn't do so either; make that argument a "const dfilter_t *" in both cases. svn path=/trunk/; revision=6239
Diffstat (limited to 'epan/epan.h')
-rw-r--r--epan/epan.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/epan/epan.h b/epan/epan.h
index 5e6a23788b..24b02a79a7 100644
--- a/epan/epan.h
+++ b/epan/epan.h
@@ -1,6 +1,6 @@
/* epan.h
*
- * $Id: epan.h,v 1.13 2002/08/28 20:40:44 jmayer Exp $
+ * $Id: epan.h,v 1.14 2002/09/09 21:04:06 guy Exp $
*
* Ethereal Protocol Analyzer Library
*
@@ -19,7 +19,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
*/
#ifndef EPAN_H
@@ -64,7 +63,7 @@ epan_dissect_run(epan_dissect_t *edt, void* pseudo_header,
const guint8* data, frame_data *fd, column_info *cinfo);
void
-epan_dissect_prime_dfilter(epan_dissect_t *edt, dfilter_t*);
+epan_dissect_prime_dfilter(epan_dissect_t *edt, const dfilter_t*);
void
epan_dissect_fill_in_columns(epan_dissect_t *edt);