On Mon, Mar 02, 2009 at 10:20:07AM -0500, Bob Copeland wrote: > > - key1 = (get_unaligned_le16(k->kv_val + 4) ^ xorMask) & 0xffff; > > - key3 = (get_unaligned_le16(k->kv_val + 10) ^ xorMask) & 0xffff; > > + key1 = get_unaligned_le16(k->kv_val + 4); > > + key3 = get_unaligned_le16(k->kv_val + 10) & 0xffff; > key1 lost the mask but key3 kept it? Heh.. Interesting editing bug that probably happened when I cleaned up some of my pending patches. I don't think the '& 0xffff' part is really needed here in either case. -- Jouni Malinen PGP id EFC895FA -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html