from Colin O'Flynn:

6lowpan dissector: copy/paste error results in 64-bit source & 16-bit dest failing
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4545

svn path=/trunk/; revision=32065
This commit is contained in:
Anders Broman 2010-03-01 11:13:54 +00:00
parent 27295cace2
commit 50f7fa97dc
1 changed files with 1 additions and 1 deletions

View File

@ -542,7 +542,7 @@ lowpan_dldst_to_ifcid(packet_info *pinfo, guint8 *ifcid)
ifcid[0] ^= 0x02;
return TRUE;
}
if (packet->src_addr_mode == IEEE802154_FCF_ADDR_SHORT) {
if (packet->dst_addr_mode == IEEE802154_FCF_ADDR_SHORT) {
lowpan_addr16_to_ifcid(packet->dst.addr16, packet->dst_pan, ifcid);
return TRUE;
}