1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-26 20:01:35 +01:00

Remove Extra Qualification

The extra "SessionKeys::" prevents compilation on Windows.
This commit is contained in:
Jacob Baines
2014-03-12 12:19:29 -04:00
parent dbc3ab4c32
commit 60404296fb

View File

@@ -422,7 +422,7 @@ SNAP *SessionKeys::tkip_decrypt_unicast(const Dot11Data &dot11, RawPDU &raw) con
return new SNAP(&pload[0], pload.size() - 20);
}
SNAP *SessionKeys::SessionKeys::decrypt_unicast(const Dot11Data &dot11, RawPDU &raw) const {
SNAP *SessionKeys::decrypt_unicast(const Dot11Data &dot11, RawPDU &raw) const {
return is_ccmp ?
ccmp_decrypt_unicast(dot11, raw) :
tkip_decrypt_unicast(dot11, raw);
@@ -546,4 +546,4 @@ bool WPA2Decrypter::decrypt(PDU &pdu) {
} // namespace Crypto
} // namespace Tins
#endif // HAVE_DOT11
#endif // HAVE_DOT11