Hello community, here is the log from the commit of package tellico checked in at Sun May 13 16:46:34 CEST 2007. -------- --- KDE/tellico/tellico.changes 2007-05-09 10:46:33.000000000 +0200 +++ /mounts/work_src_done/STABLE/tellico/tellico.changes 2007-05-12 16:45:35.000000000 +0200 @@ -1,0 +2,5 @@ +Sat May 12 16:45:29 CEST 2007 - dmueller@suse.de + +- build against yaz 3.0.2 + +------------------------------------------------------------------- New: ---- yaz-3.0.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tellico.spec ++++++ --- /var/tmp/diff_new_pack.w16580/_old 2007-05-13 16:46:11.000000000 +0200 +++ /var/tmp/diff_new_pack.w16580/_new 2007-05-13 16:46:11.000000000 +0200 @@ -20,7 +20,7 @@ %endif Summary: A book collection manager Version: 1.2.11 -Release: 1 +Release: 3 License: GNU General Public License (GPL) Group: Productivity/Other Source: %{name}-%{version}.tar.gz @@ -30,6 +30,7 @@ Prefix: /opt/kde3 URL: http://www.periapsis.org/tellico/ Patch: fix-compile.diff +Patch1: yaz-3.0.diff %description Tellico is an KDE application for keeping track of your collections. It @@ -41,6 +42,7 @@ %prep %setup -q %patch +%patch1 . /etc/opt/kde3/common_options update_admin --no-unsermake @@ -75,6 +77,8 @@ %defattr(-,root,root,0755) %changelog +* Sat May 12 2007 - dmueller@suse.de +- build against yaz 3.0.2 * Wed May 09 2007 - stbinner@suse.de - update to version 1.2.11: * Improved save time by caching image info on load. ++++++ yaz-3.0.diff ++++++ --- src/fetch/z3950connection.cpp +++ src/fetch/z3950connection.cpp @@ -442,13 +442,13 @@ QString Z3950Connection::toXML(const QCS // first 5 bytes are length bool ok; - int len = marc_.left(5).toInt(&ok); + size_t len = marc_.left(5).toUInt(&ok); if(ok && (len < 25 || len > 100000)) { myDebug() << "Z3950Connection::toXML() - bad length: " << (ok ? len : -1) << endl; return QString::null; } - char* result; + const char* result; int r = yaz_marc_decode_buf(mt, marc_, -1, &result, &len); if(r <= 0) { myDebug() << "Z3950Connection::toXML() - can't decode buffer" << endl; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de