mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-08 17:04:13 +00:00
fix typo
This commit is contained in:
parent
2f61dd1c41
commit
d336d920e8
@ -696,7 +696,7 @@ namespace client
|
|||||||
if (s->m_Destination)
|
if (s->m_Destination)
|
||||||
{
|
{
|
||||||
auto info = m_Session->m_Destination->GetInfoForRemote(s->Identity);
|
auto info = m_Session->m_Destination->GetInfoForRemote(s->Identity);
|
||||||
if(!info)
|
if(info)
|
||||||
{
|
{
|
||||||
infos.push_back(DatagramSessionInfo{
|
infos.push_back(DatagramSessionInfo{
|
||||||
m_Name,
|
m_Name,
|
||||||
|
2
Tag.h
2
Tag.h
@ -20,7 +20,7 @@ namespace data {
|
|||||||
{
|
{
|
||||||
public:
|
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;
|
Tag (const Tag<sz>& ) = default;
|
||||||
#ifndef _WIN32 // FIXME!!! msvs 2013 can't compile it
|
#ifndef _WIN32 // FIXME!!! msvs 2013 can't compile it
|
||||||
Tag (Tag<sz>&& ) = default;
|
Tag (Tag<sz>&& ) = default;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user