Hello community, here is the log from the commit of package sane checked in at Fri Dec 8 16:23:45 CET 2006. -------- --- sane/sane.changes 2006-10-27 12:59:26.000000000 +0200 +++ /mounts/work_src_done/STABLE/sane/sane.changes 2006-12-08 13:57:50.000000000 +0100 @@ -1,0 +2,7 @@ +Fri Dec 8 13:54:43 CET 2006 - jsmeix@suse.de + +- fix-ambiguous-post-pre-increment.patch fixes an ambiguous + post-increment in canon-sane.c for big-endian architectures + (e.g. PowerPC). + +------------------------------------------------------------------- New: ---- fix-ambiguous-post-pre-increment.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sane.spec ++++++ --- /var/tmp/diff_new_pack.p62Fdi/_old 2006-12-08 16:23:30.000000000 +0100 +++ /var/tmp/diff_new_pack.p62Fdi/_new 2006-12-08 16:23:30.000000000 +0100 @@ -12,12 +12,12 @@ Name: sane BuildRequires: libgphoto2-devel libieee1284 libjpeg-devel libpng net-snmp-devel pkgconfig te_ams te_latex -License: GNU General Public License (GPL) - all versions, Other License(s), see package +License: GNU General Public License (GPL), Other License(s), see package Group: Hardware/Scanner Autoreqprov: on Summary: SANE (Scanner Access Now Easy), the Scan Solution Version: 1.0.18 -Release: 23 +Release: 34 URL: http://www.sane-project.org/ # URL for Source0: http://alioth.debian.org/download.php/1669/sane-backends-1.0.18.tar.gz Source0: sane-backends-%{version}.tar.bz2 @@ -66,6 +66,8 @@ Patch4: fujitsu-disable-hw_ink_remain.patch # Patch5 fixes an uninitialized variable in teco2.c: Patch5: fix-uninitialized-variables.patch +# Patch6 fixes an ambiguous post/pre increment in canon-sane.c: +Patch6: fix-ambiguous-post-pre-increment.patch # Patch100... is SUSE specific stuff: # Patch100 lets the "canon" backend do scanner auto-recognition: Patch100: canon-backend-autoprobing.patch @@ -135,7 +137,7 @@ Gerhard Jaeger <gerhard@gjaeger.de> Giuseppe Sacco <eppesuig@debian.org> Glenn Ramsey <glenn@componic.com> - Gordon Matzigkeit <gord@gnu.ai.mit.edu> + Gordon Matzigkeit <gord@gnu.org> Guido Muesch <odiug@faho.rwth-aachen.de> Helmut Koeberle <helmut.koeberle@bytec.de> Henning Meier-Geinitz <henning@meier-geinitz.de> @@ -206,6 +208,8 @@ %patch4 # Patch5 fixes an uninitialized variable in teco2.c: %patch5 +# Patch6 fixes an ambiguous post/pre increment in canon-sane.c: +%patch6 # Patch100... is SUSE specific stuff: # Patch100 lets the "canon" backend do scanner auto-recognition: %patch100 @@ -324,7 +328,6 @@ %{_bindir}/sane-find-scanner %{_bindir}/gamma4scanimage %{_datadir}/locale/*/LC_MESSAGES/sane-backends.mo -%dir %{_datadir}/sane %{_datadir}/sane/ %{_libdir}/libsane* %{_libdir}/sane/ @@ -341,6 +344,10 @@ %doc %{_mandir}/man8/saned.8.gz %changelog -n sane +* Fri Dec 08 2006 - jsmeix@suse.de +- fix-ambiguous-post-pre-increment.patch fixes an ambiguous + post-increment in canon-sane.c for big-endian architectures + (e.g. PowerPC). * Fri Oct 27 2006 - jsmeix@suse.de - Updated hpaio.desc from the current HPLIP version 1.6.10 - Updated epkowa.desc from the current Iscan version 2.3.0.1. ++++++ fix-ambiguous-post-pre-increment.patch ++++++ --- backend/canon-sane.c.orig 2006-12-08 12:05:25.000000000 +0100 +++ backend/canon-sane.c 2006-12-08 13:13:33.000000000 +0100 @@ -1797,7 +1797,8 @@ read_fs2710 (SANE_Handle handle, SANE_By for (p = buf; p < buf + nread; p++) { b = *p; - *p++ = *(p + 1); + *p = *(p + 1); + p++; *p = b; } #endif ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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@suse.de