- fix packagename extraction when writting apport reports
// get the pkgname and reportfile
pkgname = flNotDir(pkgpath);
- pos = pkgname.rfind('_');
+ pos = pkgname.find('_');
if(pos != string::npos)
- pkgname = string(pkgname, 0, pos);
+ pkgname = pkgname.substr(0, pos);
// find the package versin and source package name
pkgCache::PkgIterator Pkg = Cache.FindPkg(pkgname);
+apt (0.7.6ubuntu3) gutsy; urgency=low
+
+ * apt-pkg/deb/dpkgpm.cc:
+ - fix packagename extraction when writting apport reports
+
+ --
+
apt (0.7.6ubuntu2) gutsy; urgency=low
* doc/examples/sources.list: