From 80d765e1d6def16e90e143f9f80c1d5621769510 Mon Sep 17 00:00:00 2001 From: sehraf Date: Tue, 18 Aug 2015 23:17:29 +0200 Subject: [PATCH] small fix --- retroshare-gui/src/gui/common/FriendList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroshare-gui/src/gui/common/FriendList.cpp b/retroshare-gui/src/gui/common/FriendList.cpp index 93caf4d23..c952a5b5c 100644 --- a/retroshare-gui/src/gui/common/FriendList.cpp +++ b/retroshare-gui/src/gui/common/FriendList.cpp @@ -1929,7 +1929,7 @@ bool FriendList::importFriendlist(QString &fileName, bool &errorPeers, bool &err // add pgp id to group RsPgpId rsPgpId(pgpIDForGroup.toStdString()); if(rsPeers->assignPeerToGroup(groupId, rsPgpId, true)) { - errorPeers = true; + errorGroups = true; std::cerr << "FriendList::importFriendlist(): failed to add '" << rsPeers->getGPGName(rsPgpId) << "'' to group '" << groupName << "'" << std::endl; } }