replaced type u_int32_t by glib's guint32 (to satisfy MSVC)

svn path=/trunk/; revision=9241
This commit is contained in:
Ulf Lamping 2003-12-11 08:54:19 +00:00
parent 0e3e6e534e
commit 92943b815c
1 changed files with 2 additions and 2 deletions

View File

@ -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 ) {