[Cluster-devel] conga/ricci/modules/rpm PackageHandler.cpp

rmccabe at sourceware.org rmccabe at sourceware.org
Sat Mar 3 05:16:58 UTC 2007


CVSROOT:	/cvs/cluster
Module name:	conga
Branch: 	RHEL4
Changes by:	rmccabe at sourceware.org	2007-03-03 05:16:58

Modified files:
	ricci/modules/rpm: PackageHandler.cpp 

Log message:
	yum repo names may contain spaces, so the != 3 check will cause packages in repositories whose name contains a space to be omitted from the package list. Change the check to l < 3, as we don't care what the repository is called, just what the package's name and version are.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/ricci/modules/rpm/PackageHandler.cpp.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.11.2.2&r2=1.11.2.3

--- conga/ricci/modules/rpm/PackageHandler.cpp	2007/02/05 21:29:57	1.11.2.2
+++ conga/ricci/modules/rpm/PackageHandler.cpp	2007/03/03 05:16:58	1.11.2.3
@@ -133,7 +133,7 @@
       line = utils::strip(line);
       vector<String> words = utils::split(line);
       vector<String>::size_type l = words.size();
-      if (l != 3)
+      if (l < 3)
 	continue;
       String name = words[0];
       String::size_type idx = name.rfind('.');




More information about the Cluster-devel mailing list