diff options
author | Michael Vogt <mvo@debian.org> | 2014-01-16 08:03:24 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-01-16 08:03:24 +0100 |
commit | db6594dfc508378b6d658aff2761da5406404238 (patch) | |
tree | 4a92c9e418c7d6dd8a53f5670b1f02be3d19b2d3 /apt-pkg/sourcelist.cc | |
parent | 181d587044121448e4d9925cc18ffb404b7b4a9c (diff) |
remove "," in components again
Diffstat (limited to 'apt-pkg/sourcelist.cc')
-rw-r--r-- | apt-pkg/sourcelist.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc index 5e4a58e95..42ada7e18 100644 --- a/apt-pkg/sourcelist.cc +++ b/apt-pkg/sourcelist.cc @@ -363,11 +363,7 @@ int pkgSourceList::ParseFileDeb822(string File) // now create one item per section string const Section = Tags.FindS("Section"); - std::vector<std::string> list; - if (Section.find(",")) - list = StringSplit(Section, ","); - else - list = StringSplit(Section, " "); + std::vector<std::string> list = StringSplit(Section, " "); for (std::vector<std::string>::const_iterator I = list.begin(); I != list.end(); I++) Parse->CreateItem(SrcList, URI, Dist, (*I), Options); |