Changeset - 2f59da8d06bf
[Not reviewed]
0 2 0
HanzZ - 13 years ago 2012-05-20 22:56:26
hanzz.k@gmail.com
Added missing continue; in spectrum2_manager
2 files changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
backends/swiften/main.cpp
Show inline comments
 
@@ -218,7 +218,7 @@ class SwiftenPlugin : public NetworkPlugin {
 
		}
 

	
 
		void handleBuddyUpdatedRequest(const std::string &user, const std::string &buddyName, const std::string &alias, const std::vector<std::string> &groups) {
 
// 			LOG4CXX_INFO(logger, user << ": Added buddy " << buddyName << ".");
 
			LOG4CXX_INFO(logger, user << ": Added/Updated buddy " << buddyName << ".");
 
// 			handleBuddyChanged(user, buddyName, alias, groups, pbnetwork::STATUS_ONLINE);
 
		}
 

	
spectrum_manager/src/main.cpp
Show inline comments
 
@@ -308,10 +308,12 @@ static void ask_local_servers(ManagerConfig *config, Swift::BoostNetworkFactorie
 
				Config cfg;
 
				if (cfg.load(itr->path().string()) == false) {
 
					std::cerr << "Can't load config file " << itr->path().string() << ". Skipping...\n";
 
					continue;
 
				}
 
 
				if (CONFIG_VECTOR(&cfg, "service.admin_jid").empty() || CONFIG_STRING(&cfg, "service.admin_password").empty()) {
 
					std::cerr << itr->path().string() << ": service.admin_jid or service.admin_password empty. This server can't be queried over XMPP.\n";
 
					continue;
 
				}
 
 
				finished++;
0 comments (0 inline, 0 general)