aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/ascend-int.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-01-06 20:05:39 +0000
committerGuy Harris <guy@alum.mit.edu>2004-01-06 20:05:39 +0000
commit0b82bd5123645ff16db59f6180f6430b91fd4aa4 (patch)
tree1829a171c8e02d0a850e4af5773863a4ab09c38a /wiretap/ascend-int.h
parentf18a95e44eb75b4d77083485d788157e81675b17 (diff)
Packet data is an array of "guint8"s, not an array of "char"s; declare
variables appropriately. Put in a cast to squelch MSVC++ warnings. svn path=/trunk/; revision=9575
Diffstat (limited to 'wiretap/ascend-int.h')
-rw-r--r--wiretap/ascend-int.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/wiretap/ascend-int.h b/wiretap/ascend-int.h
index d7d7e0181b..acfd94f334 100644
--- a/wiretap/ascend-int.h
+++ b/wiretap/ascend-int.h
@@ -2,13 +2,12 @@
* 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.9 2002/08/28 20:30:44 jmayer Exp $
+ * $Id: ascend-int.h,v 1.10 2004/01/06 20:05:39 guy Exp $
*
* Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@zing.org>
+ * By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
*
- *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
@@ -45,7 +44,7 @@ int ascendlex(void);
void init_parse_ascend(void);
void ascend_init_lexer(FILE_T fh);
-int parse_ascend(FILE_T fh, void *pd, struct ascend_phdr *phdr,
+int parse_ascend(FILE_T fh, guint8 *pd, struct ascend_phdr *phdr,
ascend_pkthdr *hdr, int len);
#endif /* ! __ASCEND_INT_H__ */