Merge branch 'master' into meshnet

This commit is contained in:
Jeff Becker 2016-06-30 09:15:30 -04:00
commit c53d6d80ba
No known key found for this signature in database
GPG key ID: AB950234D6EA286B
4 changed files with 27 additions and 12 deletions

View file

@ -31,7 +31,7 @@ namespace client
{
int len = i2p::util::lexical_cast<int>(it->second, inboundTunnelLen);
if (len > 0)
if (len >= 0)
{
inboundTunnelLen = len;
}
@ -42,7 +42,7 @@ namespace client
{
int len = i2p::util::lexical_cast<int>(it->second, outboundTunnelLen);
if (len > 0)
if (len >= 0)
{
outboundTunnelLen = len;
}