Shorten a few variables for values read from the packet.

Inspired by Kovarththanan Rajaratnam's patch for bug 3665
which in turn was a duplicate for the (fixed) bug 3660.

svn path=/trunk/; revision=28960
This commit is contained in:
Jörg Mayer 2009-07-06 17:49:33 +00:00
parent d7020119ed
commit 162f9ef199
1 changed files with 7 additions and 7 deletions

View File

@ -166,8 +166,8 @@ static int
dissect_glbp_hello(tvbuff_t *tvb, int offset, guint32 length,
packet_info *pinfo, proto_tree *tlv_tree)
{
guint16 addrtype;
guint16 addrlen;
guint8 addrtype;
guint8 addrlen;
int lastoffset = offset + length;
proto_tree_add_item(tlv_tree, hf_glbp_hello_unknown10, tvb, offset, 1, FALSE);
@ -250,8 +250,8 @@ static int
dissect_glbp_auth(tvbuff_t *tvb, int offset, guint32 length,
packet_info *pinfo _U_, proto_tree *tlv_tree)
{
guint32 authtype;
guint32 authlength;
guint8 authtype;
guint8 authlength;
int lastoffset = offset + length;
proto_tree_add_item(tlv_tree, hf_glbp_auth_authtype, tvb, offset, 1, FALSE);
@ -302,10 +302,10 @@ dissect_glbp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree *glbp_tree = NULL;
proto_tree *tlv_tree = NULL;
proto_item *ti = NULL;
guint32 type;
guint8 type;
int offset = 0;
guint32 length;
guint32 group;
guint8 length;
guint16 group;
group = tvb_get_ntohs(tvb, 2);