Browse Source

Build fix in TRACE mode.

Adam Ierymenko 9 years ago
parent
commit
218ef07d8e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      node/Peer.cpp

+ 1 - 1
node/Peer.cpp

@@ -288,7 +288,7 @@ void Peer::pushDirectPaths(const RuntimeEnvironment *RR,Path *path,uint64_t now,
 #ifdef ZT_TRACE
 #ifdef ZT_TRACE
 		{
 		{
 			std::string ps;
 			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)
 				if (ps.length() > 0)
 					ps.push_back(',');
 					ps.push_back(',');
 				ps.append(p->toString());
 				ps.append(p->toString());