diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-04-15 13:03:28 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-04-15 13:40:14 +0200 |
commit | 6642ffb761cc04c990510d8a5e89714e003abb77 (patch) | |
tree | 48c1b63cbfa6c9d3bf9babbf0e9cada17efaa193 | |
parent | 2e120f28e02df228502f5569e9ac74ef630323cb (diff) |
fix warnings: '&&' within '||' [-Wlogical-op-parentheses]
-rw-r--r-- | src/addrman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/addrman.cpp b/src/addrman.cpp index 2ef666cf2c..8fb40b46df 100644 --- a/src/addrman.cpp +++ b/src/addrman.cpp @@ -312,7 +312,7 @@ bool CAddrMan::Add_(const CAddress &addr, const CNetAddr& source, int64 nTimePen pinfo->nServices |= addr.nServices; // do not update if no new information is present - if (!addr.nTime || pinfo->nTime && addr.nTime <= pinfo->nTime) + if (!addr.nTime || (pinfo->nTime && addr.nTime <= pinfo->nTime)) return false; // do not update if the entry was already in the "tried" table |