From bd5122c6ea2d4997c0075a587abbacb23ff5280b Mon Sep 17 00:00:00 2001 From: orignal Date: Fri, 1 Feb 2019 17:41:12 -0500 Subject: [PATCH] fixed build error --- libi2pd/LeaseSet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libi2pd/LeaseSet.cpp b/libi2pd/LeaseSet.cpp index 06c5928c..e33f7974 100644 --- a/libi2pd/LeaseSet.cpp +++ b/libi2pd/LeaseSet.cpp @@ -263,7 +263,7 @@ namespace data void LeaseSet2::Update (const uint8_t * buf, size_t len, bool verifySignature) { SetBuffer (buf, len); - if (storeType != NETDB_STORE_TYPE_ENCRYPTED_LEASESET2) + if (GetStoreType () != NETDB_STORE_TYPE_ENCRYPTED_LEASESET2) ReadFromBuffer (buf, len, false, verifySignature); // TODO: implement encrypted }