1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-02-07 07:44:13 +00:00

fixed build error

This commit is contained in:
orignal 2019-02-01 17:41:12 -05:00
parent 6643258618
commit bd5122c6ea

View File

@ -263,7 +263,7 @@ namespace data
void LeaseSet2::Update (const uint8_t * buf, size_t len, bool verifySignature) void LeaseSet2::Update (const uint8_t * buf, size_t len, bool verifySignature)
{ {
SetBuffer (buf, len); SetBuffer (buf, len);
if (storeType != NETDB_STORE_TYPE_ENCRYPTED_LEASESET2) if (GetStoreType () != NETDB_STORE_TYPE_ENCRYPTED_LEASESET2)
ReadFromBuffer (buf, len, false, verifySignature); ReadFromBuffer (buf, len, false, verifySignature);
// TODO: implement encrypted // TODO: implement encrypted
} }