Browse Source

fix typo

pull/628/head
Jeff Becker 8 years ago
parent
commit
d336d920e8
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B
  1. 2
      I2PTunnel.cpp
  2. 2
      Tag.h

2
I2PTunnel.cpp

@ -696,7 +696,7 @@ namespace client @@ -696,7 +696,7 @@ namespace client
if (s->m_Destination)
{
auto info = m_Session->m_Destination->GetInfoForRemote(s->Identity);
if(!info)
if(info)
{
infos.push_back(DatagramSessionInfo{
m_Name,

2
Tag.h

@ -20,7 +20,7 @@ namespace data { @@ -20,7 +20,7 @@ namespace data {
{
public:
Tag (const uint8_t * buf) { memcpy (m_Buf, buf, sz); };
Tag (const uint8_t * buf) { memcpy (m_Buf, buf, sz); };
Tag (const Tag<sz>& ) = default;
#ifndef _WIN32 // FIXME!!! msvs 2013 can't compile it
Tag (Tag<sz>&& ) = default;

Loading…
Cancel
Save