[Pkg-xfce-commits] r5686 - in goodies/trunk/squeeze/debian: . patches

Yves-Alexis Perez corsac at alioth.debian.org
Sat Apr 23 09:59:46 UTC 2011


Author: corsac
Date: 2011-04-23 21:59:44 +0000 (Sat, 23 Apr 2011)
New Revision: 5686

Added:
   goodies/trunk/squeeze/debian/patches/
   goodies/trunk/squeeze/debian/patches/01_fix-format-string.patch
   goodies/trunk/squeeze/debian/patches/series
Modified:
   goodies/trunk/squeeze/debian/changelog
Log:
* debian/patches:
  - 01_fix-format-string added, add missing string format.

Modified: goodies/trunk/squeeze/debian/changelog
===================================================================
--- goodies/trunk/squeeze/debian/changelog	2011-04-23 21:56:27 UTC (rev 5685)
+++ goodies/trunk/squeeze/debian/changelog	2011-04-23 21:59:44 UTC (rev 5686)
@@ -6,8 +6,10 @@
     - enable hardening wrapper.
   * debian/control:
     - add build-dep on hardening-wrapper.
+  * debian/patches:
+    - 01_fix-format-string added, add missing string format.
 
- -- Yves-Alexis Perez <corsac at debian.org>  Sat, 23 Apr 2011 23:56:03 +0200
+ -- Yves-Alexis Perez <corsac at debian.org>  Sat, 23 Apr 2011 23:57:15 +0200
 
 squeeze (0.2.3-9) unstable; urgency=low
 

Added: goodies/trunk/squeeze/debian/patches/01_fix-format-string.patch
===================================================================
--- goodies/trunk/squeeze/debian/patches/01_fix-format-string.patch	                        (rev 0)
+++ goodies/trunk/squeeze/debian/patches/01_fix-format-string.patch	2011-04-23 21:59:44 UTC (rev 5686)
@@ -0,0 +1,13 @@
+diff --git a/src/main_window.c b/src/main_window.c
+index 98386c6..873c83a 100644
+--- a/src/main_window.c
++++ b/src/main_window.c
+@@ -1263,7 +1263,7 @@ cb_sq_main_window_archive_command_terminated(LSQArchive *archive, GError *error,
+ 
+ 	if(error)
+ 	{
+-		GtkWidget *error_dialog = gtk_message_dialog_new(GTK_WINDOW(window), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, error->message);
++		GtkWidget *error_dialog = gtk_message_dialog_new(GTK_WINDOW(window), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, "%s", error->message);
+ 		gtk_dialog_run(GTK_DIALOG(error_dialog));
+ 		gtk_widget_destroy(error_dialog);
+ 	}

Added: goodies/trunk/squeeze/debian/patches/series
===================================================================
--- goodies/trunk/squeeze/debian/patches/series	                        (rev 0)
+++ goodies/trunk/squeeze/debian/patches/series	2011-04-23 21:59:44 UTC (rev 5686)
@@ -0,0 +1 @@
+01_fix-format-string.patch




More information about the Pkg-xfce-commits mailing list