diff -u swac-get-0.3/debian/changelog swac-get-0.3/debian/changelog --- swac-get-0.3/debian/changelog +++ swac-get-0.3/debian/changelog @@ -1,3 +1,12 @@ +swac-get (0.3-1ubuntu1) intrepid; urgency=low + + * Bug fixed in the source file "src/swac_index.cc". + (field `packages-idx` of the table `alphaidx` was not properly + filled during the installation of audio collections). + LP: #275263 + + -- Nicolas Vion Sun, 28 Sep 2008 00:49:16 +0200 + swac-get (0.3-1) unstable; urgency=low * Initial release only in patch2: unchanged: --- swac-get-0.3.orig/src/swac_index.cc +++ swac-get-0.3/src/swac_index.cc @@ -81,7 +81,7 @@ db.query("INSERT INTO `sounds` (" + fields + ") VALUES (" + values + ");"); std::string idx(int2string(db.last_insert_rowid())); for (std::list::iterator it = alphaidx.begin(); it != alphaidx.end(); it++) - db.query("INSERT INTO `alphaidx` (`str`, `sounds_idx`) VALUES (" + db.str(*it) +", " + idx + ");"); + db.query("INSERT INTO `alphaidx` (`str`, `sounds_idx`, `packages_idx`) VALUES (" + db.str(*it) +", " + idx + ", " + packages_idx + ");"); } void Tswac_index::group_push(char const **attr) {