Use IDENTITY_HASH_SIZE constant in NetDb::HandleDatabaseLookupMsg().

This commit is contained in:
Chad Fraleigh 2023-07-05 15:49:10 -07:00
parent cbec85a21b
commit c1ede68a33
No known key found for this signature in database
GPG key ID: 2415C39758458A8F

View file

@ -955,9 +955,9 @@ namespace data
// try responses // try responses
for (int i = 0; i < num; i++) for (int i = 0; i < num; i++)
{ {
const uint8_t * router = buf + 33 + i*32; const uint8_t * router = buf + 33 + i*IDENTITY_HASH_SIZE;
char peerHash[48]; char peerHash[48];
int l1 = i2p::data::ByteStreamToBase64 (router, 32, peerHash, 48); int l1 = i2p::data::ByteStreamToBase64 (router, IDENTITY_HASH_SIZE, peerHash, 48);
peerHash[l1] = 0; peerHash[l1] = 0;
LogPrint (eLogDebug, "NetDb: ", i, ": ", peerHash); LogPrint (eLogDebug, "NetDb: ", i, ": ", peerHash);