aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dns.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2003-12-11 08:54:19 +0000
committerUlf Lamping <ulf.lamping@web.de>2003-12-11 08:54:19 +0000
commit92943b815c0ba8911c5827ca10f34cdae8d9db39 (patch)
treec7758616e4d36359e30cfdec42a9f5eb049cbf90 /packet-dns.c
parent0e3e6e534e6d8303728110182d14ddbe29e344f6 (diff)
replaced type u_int32_t by glib's guint32 (to satisfy MSVC)
svn path=/trunk/; revision=9241
Diffstat (limited to 'packet-dns.c')
-rw-r--r--packet-dns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-dns.c b/packet-dns.c
index e76a7436dd..a7d0a016fc 100644
--- a/packet-dns.c
+++ b/packet-dns.c
@@ -1,7 +1,7 @@
/* packet-dns.c
* Routines for DNS packet disassembly
*
- * $Id: packet-dns.c,v 1.107 2003/12/10 19:35:03 guy Exp $
+ * $Id: packet-dns.c,v 1.108 2003/12/11 08:54:19 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -896,7 +896,7 @@ static const value_string cert_vals[] = {
static int
compute_key_id(tvbuff_t *tvb, int offset, int size, guint8 algo)
{
- u_int32_t ac;
+ guint32 ac;
unsigned char c1, c2;
if( size < 4 ) {