r13340 - in /desktop/unstable/gtk+2.0/debian: changelog patches/034_gtkcupsutils_type_fix.patch patches/series

joss at users.alioth.debian.org joss at users.alioth.debian.org
Wed Oct 31 23:58:03 UTC 2007


Author: joss
Date: Wed Oct 31 23:58:03 2007
New Revision: 13340

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=13340
Log:
* 034_gtkcupsutils_type_fix.patch: type-casting fix from Herbert 
  Valerio Riedel that allows remote printing. Closes: #448071.

Added:
    desktop/unstable/gtk+2.0/debian/patches/034_gtkcupsutils_type_fix.patch
Modified:
    desktop/unstable/gtk+2.0/debian/changelog
    desktop/unstable/gtk+2.0/debian/patches/series

Modified: desktop/unstable/gtk+2.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/changelog?rev=13340&op=diff
==============================================================================
--- desktop/unstable/gtk+2.0/debian/changelog (original)
+++ desktop/unstable/gtk+2.0/debian/changelog Wed Oct 31 23:58:03 2007
@@ -9,8 +9,10 @@
   * 033_treeview_resizing.patch: updated patch from Kristian Rietveld.
   * 031_gtksearchenginetracker_fixes.patch: added back, only the name
     change was fixed upstream.
-
- -- Josselin Mouette <joss at debian.org>  Wed, 31 Oct 2007 23:05:18 +0100
+  * 034_gtkcupsutils_type_fix.patch: type-casting fix from Herbert 
+    Valerio Riedel that allows remote printing. Closes: #448071.
+
+ -- Josselin Mouette <joss at debian.org>  Thu, 01 Nov 2007 00:57:30 +0100
 
 gtk+2.0 (2.12.1-1) unstable; urgency=low
 

Added: desktop/unstable/gtk+2.0/debian/patches/034_gtkcupsutils_type_fix.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/patches/034_gtkcupsutils_type_fix.patch?rev=13340&op=file
==============================================================================
--- desktop/unstable/gtk+2.0/debian/patches/034_gtkcupsutils_type_fix.patch (added)
+++ desktop/unstable/gtk+2.0/debian/patches/034_gtkcupsutils_type_fix.patch Wed Oct 31 23:58:03 2007
@@ -1,0 +1,11 @@
+--- gtk+2.0-2.12.0/modules/printbackends/cups/gtkcupsutils.c.orig	2007-09-13 22:35:49.000000000 +0200
++++ gtk+2.0-2.12.0/modules/printbackends/cups/gtkcupsutils.c	2007-10-19 12:46:28.000000000 +0200
+@@ -622,7 +622,7 @@ _post_send (GtkCupsRequest *request)
+   if (request->data_io != NULL)
+     {
+       fstat (g_io_channel_unix_get_fd (request->data_io), &data_info);
+-      sprintf (length, "%lu", (unsigned long) ippLength (request->ipp_request) + data_info.st_size);
++      sprintf (length, "%lu", (unsigned long) (ippLength (request->ipp_request) + data_info.st_size));
+     }
+   else
+     sprintf (length, "%lu", (unsigned long) ippLength (request->ipp_request));

Modified: desktop/unstable/gtk+2.0/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/patches/series?rev=13340&op=diff
==============================================================================
--- desktop/unstable/gtk+2.0/debian/patches/series (original)
+++ desktop/unstable/gtk+2.0/debian/patches/series Wed Oct 31 23:58:03 2007
@@ -12,6 +12,7 @@
 030_gtkentry_password-char-circle.patch
 031_gtksearchenginetracker_fixes.patch
 033_treeview_resizing.patch
+034_gtkcupsutils_type_fix.patch
 040_filechooser_single-click.patch
 041_ia32-libs.patch
 060_ignore-random-icons.patch




More information about the pkg-gnome-commits mailing list