aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/ascend-int.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-05-19 08:18:17 +0000
committerGuy Harris <guy@alum.mit.edu>2000-05-19 08:18:17 +0000
commit0cc75a35697b455b29f0111c0d100639bed35ea8 (patch)
treecae7f818bec5f894f09f67cc380f7fd15aa17f58 /wiretap/ascend-int.h
parent17ccdafa03331d860c55f6ecd4093ca520d0737b (diff)
In Wiretap, a file stream handle is a "FILE_T", not a "FILE_T *" (a
"FILE_T" is either a "gzFile" or a "FILE *", depending on whether zlib support is enabled or not). Fix various function declarations and definitions. svn path=/trunk/; revision=1984
Diffstat (limited to 'wiretap/ascend-int.h')
-rw-r--r--wiretap/ascend-int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/wiretap/ascend-int.h b/wiretap/ascend-int.h
index d376fe259e..2b0f143c41 100644
--- a/wiretap/ascend-int.h
+++ b/wiretap/ascend-int.h
@@ -2,7 +2,7 @@
* Definitions for routines common to multiple modules in the Lucent/Ascend
* capture file reading code code, but not used outside that code.
*
- * $Id: ascend-int.h,v 1.5 2000/05/18 09:09:19 guy Exp $
+ * $Id: ascend-int.h,v 1.6 2000/05/19 08:18:14 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -43,8 +43,8 @@ extern struct ascend_phdr *pseudo_header;
int ascendlex(void);
void init_parse_ascend(void);
-void ascend_init_lexer(FILE_T *fh, FILE *nfh);
-int parse_ascend(FILE_T *fh, void *pd, struct ascend_phdr *phdr,
+void ascend_init_lexer(FILE_T fh, FILE *nfh);
+int parse_ascend(FILE_T fh, void *pd, struct ascend_phdr *phdr,
ascend_pkthdr *hdr, int len);
#endif /* ! __ASCEND_INT_H__ */