Switched BanList sharing to only your own list. (was OWN + FRIENDS lists)

- This data is not used at the moment, so just reducing data before release.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4875 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2012-02-03 00:59:41 +00:00
parent 15ea61caa3
commit 8756b0d75d

View File

@ -408,9 +408,9 @@ int p3BanList::sendBanSet(std::string peerid)
std::map<uint32_t, BanListPeer>::iterator it;
for(it = mBanSet.begin(); it != mBanSet.end(); it++)
{
if (it->second.level > RSBANLIST_SOURCE_FRIEND)
if (it->second.level >= RSBANLIST_SOURCE_FRIEND)
{
continue; // only share OWN and FRIENDS.
continue; // only share OWN for the moment.
}
RsTlvBanListEntry bi;