aboutsummaryrefslogtreecommitdiffstats
path: root/packet-icmpv6.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-06-02 08:10:02 +0000
committerGuy Harris <guy@alum.mit.edu>2001-06-02 08:10:02 +0000
commit261c18fcd754431c11f8fdbe0d511d7a37c43e6d (patch)
treefeee5c07d235a0e67829e7eca48d06fa9419df4e /packet-icmpv6.c
parent8e4d1cce1e90c0ddcc702ae9ff51ee33b79fec51 (diff)
Not all platforms have u_int32_t (for example, Windows+MSVC doesn't), so
use "guint32" instead. svn path=/trunk/; revision=3503
Diffstat (limited to 'packet-icmpv6.c')
-rw-r--r--packet-icmpv6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-icmpv6.c b/packet-icmpv6.c
index d696c0707b..0dfcd962e9 100644
--- a/packet-icmpv6.c
+++ b/packet-icmpv6.c
@@ -1,7 +1,7 @@
/* packet-icmpv6.c
* Routines for ICMPv6 packet disassembly
*
- * $Id: packet-icmpv6.c,v 1.45 2001/06/02 06:10:08 guy Exp $
+ * $Id: packet-icmpv6.c,v 1.46 2001/06/02 08:10:02 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -317,7 +317,7 @@ again:
struct nd_opt_route_info ribuf, *ri;
struct e_in6_addr in6;
int l;
- u_int32_t lifetime;
+ guint32 lifetime;
ri = &ribuf;
tvb_memcpy(tvb, (guint8 *)ri, offset, sizeof *ri);