mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
moved [not] operator inside parenthesis. Does not change anything except improving readability
This commit is contained in:
parent
dea7c774b4
commit
58c70ca93c
@ -908,7 +908,7 @@ int RsGenExchange::validateGrp(RsNxsGrp* grp)
|
||||
PrivacyBitPos pos = GRP_OPTION_BITS;
|
||||
|
||||
// Check required permissions, and allow them to sign it - if they want too - as well!
|
||||
if (!(metaData.mAuthorId.isNull()) || checkAuthenFlag(pos, author_flag))
|
||||
if ((!metaData.mAuthorId.isNull()) || checkAuthenFlag(pos, author_flag))
|
||||
{
|
||||
needIdentitySign = true;
|
||||
std::cerr << "Needs Identity sign! (Service Flags)";
|
||||
|
Loading…
Reference in New Issue
Block a user