diff options
author | Michael Vogt <mvo@debian.org> | 2013-11-28 20:04:14 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-11-28 20:04:14 +0100 |
commit | 05f4e3b8441a3dc867ea7956736202a93b36e95b (patch) | |
tree | b8c117fd2c139eed91ce86fc785064a16e5908dd /apt-private/private-output.cc | |
parent | 17ab57f41a249fabb15cdbeeff5a5c0942ccf4ac (diff) | |
parent | f832a745920c988188c64ba018d1e2b436627ad5 (diff) |
Merge branch 'debian/sid' into ubuntu/master
Conflicts:
debian/changelog
Diffstat (limited to 'apt-private/private-output.cc')
-rw-r--r-- | apt-private/private-output.cc | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/apt-private/private-output.cc b/apt-private/private-output.cc index 6fadf7274..91d13f31b 100644 --- a/apt-private/private-output.cc +++ b/apt-private/private-output.cc @@ -158,7 +158,8 @@ std::string GetShortDescription(pkgCacheFile &CacheFile, pkgRecords &records, pk } /*}}}*/ void ListSingleVersion(pkgCacheFile &CacheFile, pkgRecords &records, /*{{{*/ - pkgCache::VerIterator V, std::ostream &out) + pkgCache::VerIterator V, std::ostream &out, + bool include_summary) { pkgCache::PkgIterator P = V.ParentPkg(); @@ -224,9 +225,12 @@ void ListSingleVersion(pkgCacheFile &CacheFile, pkgRecords &records, /*{{{*/ out << GetVersion(CacheFile, V); } out << " " << GetArchitecture(CacheFile, P) << " "; - out << std::endl - << " " << GetShortDescription(CacheFile, records, P) - << std::endl; + if (include_summary) + { + out << std::endl + << " " << GetShortDescription(CacheFile, records, P) + << std::endl; + } } } /*}}}*/ |