diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-10-27 15:01:11 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-10-27 15:01:11 -0700 |
commit | 218ef07d8e7fcc361aa0875f755eea7b5171f02c (patch) | |
tree | d88c6b905086bb80ca45c1ed87b49bda211a367e | |
parent | 16bc3e03982286232e1df2da17d8b2fc3c5a5c55 (diff) | |
download | infinitytier-218ef07d8e7fcc361aa0875f755eea7b5171f02c.tar.gz infinitytier-218ef07d8e7fcc361aa0875f755eea7b5171f02c.zip |
Build fix in TRACE mode.
-rw-r--r-- | node/Peer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Peer.cpp b/node/Peer.cpp index ebdb6026..e56c1eca 100644 --- a/node/Peer.cpp +++ b/node/Peer.cpp @@ -288,7 +288,7 @@ void Peer::pushDirectPaths(const RuntimeEnvironment *RR,Path *path,uint64_t now, #ifdef ZT_TRACE { std::string ps; - for(std::vector<Path>::const_iterator p(dps.begin());p!=dps.end();++p) { + for(std::vector<InetAddress>::const_iterator p(dps.begin());p!=dps.end();++p) { if (ps.length() > 0) ps.push_back(','); ps.append(p->toString()); |