suppressed inconsistent warning message

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6547 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-07-29 12:42:45 +00:00
parent f5acb53ea7
commit 379aece9b0

View File

@ -364,7 +364,8 @@ bool p3Peers::getPeerDetails(const std::string &id, RsPeerDetails &d)
peerConnectState pcs;
if (!mLinkMgr->getFriendNetStatus(id, pcs))
{
std::cerr << "p3Peers::getPeerDetails() ERROR No Link Information : " << id << std::endl;
if(id != sOwnId)
std::cerr << "p3Peers::getPeerDetails() ERROR No Link Information : " << id << std::endl;
return true;
}