[complement-svn] SF.net SVN: complement: [1760] trunk/complement/explore/lib/janus/janus.cc
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2007-10-08 13:05:01
|
Revision: 1760 http://complement.svn.sourceforge.net/complement/?rev=1760&view=rev Author: complement Date: 2007-10-08 06:04:57 -0700 (Mon, 08 Oct 2007) Log Message: ----------- fix typo:: != -> == for request VS_MERGE_GROUP Modified Paths: -------------- trunk/complement/explore/lib/janus/janus.cc Modified: trunk/complement/explore/lib/janus/janus.cc =================================================================== --- trunk/complement/explore/lib/janus/janus.cc 2007-10-08 11:06:51 UTC (rev 1759) +++ trunk/complement/explore/lib/janus/janus.cc 2007-10-08 13:04:57 UTC (rev 1760) @@ -752,7 +752,7 @@ for ( gid_map_type::const_iterator i = grmap.begin(); i != grmap.end(); ++i ) { // for all groups, except vshosts_group, // and only once for earch group - if ( (i->first != vshosts_group) && (gcache.find( i->first) != gcache.end()) ) { + if ( (i->first != vshosts_group) && (gcache.find( i->first ) == gcache.end()) ) { e.value().grp = i->first; Send( e ); gcache.insert( i->first ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |