Warning removal.

This commit is contained in:
Adam Ierymenko 2020-05-25 09:55:47 -07:00
parent 6051c973d3
commit c881094202
No known key found for this signature in database
GPG key ID: C8877CF2D7A5D7F3

View file

@ -425,10 +425,7 @@ bool Identity::fromString(const char *str)
return false;
m_computeHash();
if ((m_type == P384) && (m_fp.address() != Address(m_fp.hash())))
return false;
return true;
return !((m_type == P384) && (m_fp.address() != Address(m_fp.hash())));
}
int Identity::marshal(uint8_t data[ZT_IDENTITY_MARSHAL_SIZE_MAX], const bool includePrivate) const noexcept