The reserved field is now 16 bits. Treat it as such.

svn path=/trunk/; revision=22585
This commit is contained in:
Jaap Keuter 2007-08-22 13:58:39 +00:00
parent ae8b29ec53
commit a4f2082eb8
1 changed files with 2 additions and 2 deletions

View File

@ -659,7 +659,7 @@ static gboolean
dissect_pana(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
guint8 pana_res;
guint16 pana_res;
guint16 msg_length;
guint16 flags;
guint32 buffer_length;
@ -689,7 +689,7 @@ dissect_pana(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
return FALSE;
}
/* check that the reserved byte is zero */
/* check that the reserved field is zero */
if(pana_res!=0){
return FALSE;
}