Fix reserved bits bitmask.

svn path=/trunk/; revision=22282
This commit is contained in:
Jaap Keuter 2007-07-10 05:15:45 +00:00
parent 3242580dfa
commit a9ed13c1d1
1 changed files with 1 additions and 1 deletions

View File

@ -709,7 +709,7 @@ dissect_pana(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
/* verify that none of the reserved bits are set */
if(flags&0x0fff){
if(flags&0x07ff){
return FALSE;
}