Make message_digest_type a guint16. Removed cast.

Spotted by Ulf Lamping.

svn path=/trunk/; revision=11742
This commit is contained in:
Jörg Mayer 2004-08-15 11:39:13 +00:00
parent 60eb7df5b5
commit 4bd2d5b0be

View file

@ -343,7 +343,8 @@ dissect_dhcpfo(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
guint additionalHBlength;
struct payloadMessage *helpliste;
int actualoffset;
guint8 htype, reject_reason, message_digest_type;
guint8 htype, reject_reason;
guint16 message_digest_type;
const guint8 *chaddr;
guint8 binding_status;
gchar *binding_status_str, *reject_reason_str;
@ -835,7 +836,7 @@ dissect_dhcpfo(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
case DHCP_FO_PD_MESSAGE_DIGEST:
message_digest_type = (guint8) tvb_get_ntohs(tvb,helpliste->actualpoffset+4);
message_digest_type = tvb_get_ntohs(tvb,helpliste->actualpoffset+4);
if(message_digest_type == 1)
{
proto_item_append_text(oi, ", HMAC-MD5");