aboutsummaryrefslogtreecommitdiffstats
path: root/packet-bootp.c
diff options
context:
space:
mode:
authorUwe Girlich <Uwe.Girlich@philosys.de>2001-05-03 07:02:50 +0000
committerUwe Girlich <Uwe.Girlich@philosys.de>2001-05-03 07:02:50 +0000
commitdf77eacc8451340db785cd4b739386188f512e28 (patch)
tree912f5ada51ab1e651cfcd8971a09fa908a041a11 /packet-bootp.c
parenta7db88189664f6fa4d90a5b9afa8edf6f393f6d5 (diff)
uint8_t changed to guint8
svn path=/trunk/; revision=3397
Diffstat (limited to 'packet-bootp.c')
-rw-r--r--packet-bootp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-bootp.c b/packet-bootp.c
index fb65a9616a..934be29feb 100644
--- a/packet-bootp.c
+++ b/packet-bootp.c
@@ -2,7 +2,7 @@
* Routines for BOOTP/DHCP packet disassembly
* Gilbert Ramirez <gram@xiexie.org>
*
- * $Id: packet-bootp.c,v 1.50 2001/05/01 21:39:41 guy Exp $
+ * $Id: packet-bootp.c,v 1.51 2001/05/03 07:02:50 girlich Exp $
*
* The information used comes from:
* RFC 951: Bootstrap Protocol
@@ -545,7 +545,7 @@ bootp_option(tvbuff_t *tvb, proto_tree *bp_tree, int voff, int eoff)
tvb_get_ntohl(tvb, voff+13));
md5_ptr = tvb_get_ptr(tvb, voff+17, 16);
for (i=0; i<16; i++)
- sprintf(&(md5_str[i*3]), "%02X ", (uint8_t) md5_ptr[i]);
+ sprintf(&(md5_str[i*3]), "%02X ", (guint8) md5_ptr[i]);
md5_str[48] = 0;
proto_tree_add_text(v_tree, tvb, voff+17, 16, "HMAC MD5 Hash: %s", md5_str);
}