aboutsummaryrefslogtreecommitdiffstats
path: root/packet-icmpv6.c
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2000-08-22 15:07:33 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2000-08-22 15:07:33 +0000
commit9b8925c42f3689f7ae37cb683de9e564b3bc52bf (patch)
treed66176dd94146eea69b801f0acd7464eb9d8aaea /packet-icmpv6.c
parent103fb576428171d0b400359394afe1bf68f3e33e (diff)
Change u_int32_t to guint32
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2342 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-icmpv6.c')
-rw-r--r--packet-icmpv6.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-icmpv6.c b/packet-icmpv6.c
index f071a8867c..3ed3ab4ac6 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.23 2000/08/22 08:30:00 itojun Exp $
+ * $Id: packet-icmpv6.c,v 1.24 2000/08/22 15:07:33 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -219,12 +219,12 @@ again:
static const char *
bitrange0(v, s, buf, buflen)
- u_int32_t v;
+ guint32 v;
int s;
char *buf;
int buflen;
{
- u_int32_t v0;
+ guint32 v0;
char *p, *ep;
int off;
int i, l;
@@ -931,7 +931,7 @@ dissect_icmpv6(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
int flagoff;
proto_tree_add_text(icmp6_tree, NullTVB,
offset + offsetof(struct icmp6_router_renum, rr_seqnum), 4,
- /*"Sequence number: 0x%08x", (u_int32_t)htonl(rr->rr_seqnum));*/
+ /*"Sequence number: 0x%08x", (guint32)htonl(rr->rr_seqnum));*/
"Sequence number: 0x%08x", pntohl(&rr->rr_seqnum));
proto_tree_add_text(icmp6_tree, NullTVB,
offset + offsetof(struct icmp6_router_renum, rr_segnum), 1,