replaced type u_int32_t by glib's guint32 (to satisfy MSVC)
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 11 Dec 2003 08:54:19 +0000 (08:54 +0000)
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 11 Dec 2003 08:54:19 +0000 (08:54 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9241 f5534014-38df-0310-8fa8-9805f1628bb7

packet-dns.c

index e76a7436dd7aa60056df54284533a7e65fd86063..a7d0a016fcb11774e44e1001b6a25d7e006c87e1 100644 (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 ) {