diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-04-02 10:41:19 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-04-02 10:41:19 +0000 |
commit | 393b1b3e8dd9bedea24a039f97e15ef37310303f (patch) | |
tree | c4c60253cfedb297054832dd817ccfcf9863469d /epan/osi-utils.h | |
parent | 9b99fdd7abb90332607782b63dca0a897678c5e3 (diff) | |
download | wireshark-393b1b3e8dd9bedea24a039f97e15ef37310303f.tar.gz wireshark-393b1b3e8dd9bedea24a039f97e15ef37310303f.tar.bz2 wireshark-393b1b3e8dd9bedea24a039f97e15ef37310303f.zip |
Don't use "u_int" and "u_char", as they're not defined in <sys/types.h>
on Windows, so we'd have to drag in <winsock.h> to define them.
svn path=/trunk/; revision=3246
Diffstat (limited to 'epan/osi-utils.h')
-rw-r--r-- | epan/osi-utils.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/osi-utils.h b/epan/osi-utils.h index 909c5d5afb..ae3d5a0b90 100644 --- a/epan/osi-utils.h +++ b/epan/osi-utils.h @@ -1,6 +1,6 @@ /* osi-utils.h * - * $Id: osi-utils.h,v 1.2 2001/04/01 07:06:23 hagbard Exp $ + * $Id: osi-utils.h,v 1.3 2001/04/02 10:41:19 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -48,9 +48,9 @@ #define NSAP_IDI_ISODCC 0x39 #define NSAP_IDI_GOSIP2 0x47 -gchar* print_nsap_net ( const u_char *, int ); -gchar* print_area ( const u_char *, int ); -gchar* print_system_id( const u_char *, int ); +gchar* print_nsap_net ( const guint8 *, int ); +gchar* print_area ( const guint8 *, int ); +gchar* print_system_id( const guint8 *, int ); #endif /* __OSI_UTILS_H__ */ |