Bug#628441: can't reproduce

2011-11-10 Thread Eric Alexander
tags 628441 unreproducible
thanks

I tried reproducing this on a fresh wheezy install and was unable to reproduce 
this bug. Are you still able to reproduce this
bug?  Is it possible that this was fixed by the 1.8.10-1 upload?






-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#643457: pidgin-librvp: FTBFS: rvp.c:4271:3: error: format not a string literal and no format arguments [-Werror=format-security]

2011-11-11 Thread Eric Alexander
tags 643457 +patch
thanks
diff -Nur -x '*.orig' -x '*~' pidgin-librvp-0.9.7/build-tree/librvp-0.9.7/rvp.c pidgin-librvp-0.9.7.new/build-tree/librvp-0.9.7/rvp.c
--- librvp-0.9.7/rvp.c	2008-04-05 17:46:31.0 -0400
+++ librvp-0.9.7/rvp.c	2011-11-11 06:10:22.745024197 -0500
@@ -4268,7 +4268,7 @@
   xmlDocDumpFormatMemory( doc, &content, &content_length, 0 );
   xmlFreeDoc( doc );
 
-  args[0] = g_strdup_printf( principal );
+  args[0] = g_strdup_printf( "%s", principal );
   args[1] = (gchar *)content;
   args[2] = (gchar *)content_length;
   args[3] = NULL;


Bug#643349: alpine: FTBFS: flocklnx.c:60:7: error: format not a string literal

2011-11-11 Thread Eric Alexander
tags 643349 +patch
thanks
Index: alpine-2.02/imap/src/osdep/unix/flocklnx.c
===
--- alpine-2.02.orig/imap/src/osdep/unix/flocklnx.c	2010-10-02 04:37:57.0 -0400
+++ alpine-2.02/imap/src/osdep/unix/flocklnx.c	2011-11-11 08:58:18.297338885 -0500
@@ -57,7 +57,7 @@
 case ENOLCK:		/* lock table is full */
   sprintf (tmp,"File locking failure: %s",strerror (errno));
   mm_log (tmp,WARN);	/* give the user a warning of what happened */
-  if (!logged++) syslog (LOG_ERR,tmp);
+  if (!logged++) syslog (LOG_ERR, "%s", tmp);
 /* return failure if non-blocking lock */
   if (op & LOCK_NB) return -1;
   sleep (5);		/* slow down in case it loops */
Index: alpine-2.02/alpine/mailcmd.c
===
--- alpine-2.02.orig/alpine/mailcmd.c	2010-10-02 04:37:57.0 -0400
+++ alpine-2.02/alpine/mailcmd.c	2011-11-11 09:02:29.357346728 -0500
@@ -7879,7 +7879,7 @@
 
 	  case 13 :			/* Match my addresses */
 		me++;
-		snprintf(sstring, sizeof(sstring), not ? _(dont_match_me) : _(match_me));
+		snprintf(sstring, sizeof(sstring), "%s", not ? _(dont_match_me) : _(match_me));
 		continue;
 
 	  case 14 :			/* Subject: default */
Index: alpine-2.02/pith/ldap.c
===
--- alpine-2.02.orig/pith/ldap.c	2010-10-02 04:37:57.0 -0400
+++ alpine-2.02/pith/ldap.c	2011-11-11 09:02:03.401345919 -0500
@@ -777,7 +777,7 @@
 	 */
 	switch(args){
 	  case 0:
-	snprintf(filter, sizeof(filter), filt_format);
+	snprintf(filter, sizeof(filter), "%s", filt_format);
 	break;
 	  case 1:
 	snprintf(filter, sizeof(filter), filt_format, scp);


Bug#643359: blktool: FTBFS: util.c:31:3: error: format not a string literal and no format arguments [-Werror=format-security]

2011-11-11 Thread Eric Alexander
tags 643359 +patch
thanks


0002-fix-string-error.patch
Description: Binary data


Bug#643362: cellwriter: FTBFS: src/statusicon.c:215:17: error: format not a string literal and no format arguments [-Werror=format-security]

2011-11-12 Thread Eric Alexander
tags 643362 +patch
thanks
Index: cellwriter-1.3.4/src/statusicon.c
===
--- cellwriter-1.3.4.orig/src/statusicon.c	2007-11-10 00:13:02.0 -0500
+++ cellwriter-1.3.4/src/statusicon.c	2011-11-11 10:59:14.641565609 -0500
@@ -212,7 +212,7 @@
 icon_path = g_build_filename(DATADIR, ICON_PATH PACKAGE ".svg", NULL);
 if (!(pixbuf = gdk_pixbuf_new_from_file(icon_path, &error))) {
 status_icon = NULL;
-g_warning(error->message);
+g_warning("%s", error->message);
 g_warning("Failed to load status icon '%s'", icon_path);
 return;
 }


Bug#643366: concalc: FTBFS: concalc.cpp:442:22: error: format not a string literal and no format arguments [-Werror=format-security]

2011-11-12 Thread Eric Alexander
tags 643366 +patch
thanks
Index: concalc-0.9.2/src/concalc.cpp
===
--- concalc-0.9.2.orig/src/concalc.cpp	2011-11-11 11:39:05.593640191 -0500
+++ concalc-0.9.2/src/concalc.cpp	2011-11-11 11:39:15.141640488 -0500
@@ -439,7 +439,7 @@
 break;
 			case NCHAR:
 			{
-printf(value.cval);
+printf("%s", value.cval);
 break;
 			}
 			default:
@@ -678,7 +678,7 @@
 initDebugging(subFileContent,scriptData);
 cleanSubFileContent=preprocessor(subFileContent,pref,true);
 fprintf(stderr,"\nProcessing file ");
-fprintf(stderr,scriptData->subprogramPath[c]);
+fprintf(stderr,"%s", scriptData->subprogramPath[c]);
 fprintf(stderr,"\n");
 if(cleanSubFileContent==NULL)
 {
Index: concalc-0.9.2/src/global.cpp
===
--- concalc-0.9.2.orig/src/global.cpp	2008-08-11 11:16:49.0 -0400
+++ concalc-0.9.2/src/global.cpp	2011-11-11 11:41:02.813643851 -0500
@@ -6553,6 +6553,6 @@
 	}
 	
 	
-	fprintf(stderr,string);
+	fprintf(stderr,"%s",string);
 	fprintf(stderr,"\n");
 }


Bug#643369: crack-attack: FTBFS: callbacks.cxx:116:38: error: format not a string literal and no format arguments [-Werror=format-security]

2011-11-12 Thread Eric Alexander
tags 643369 +patch
thanks
diff -Nur -x '*.orig' -x '*~' crack-attack-1.1.14/src/gtk-gui/callbacks.cxx crack-attack-1.1.14.new/src/gtk-gui/callbacks.cxx
--- crack-attack-1.1.14/src/gtk-gui/callbacks.cxx	2005-05-13 15:55:24.0 -0400
+++ crack-attack-1.1.14.new/src/gtk-gui/callbacks.cxx	2011-11-11 12:05:58.985690579 -0500
@@ -113,6 +113,7 @@
   GTK_DIALOG_DESTROY_WITH_PARENT,
   GTK_MESSAGE_ERROR,
   GTK_BUTTONS_CLOSE,
+  "%s",
   message);
 gtk_dialog_run (GTK_DIALOG (dialog));
 gtk_widget_destroy (dialog);
@@ -160,7 +161,7 @@
 	buffer = gtk_text_view_get_buffer(txtOutput);
 	gtk_text_buffer_get_end_iter(buffer, &iter);
 	g_io_channel_read_line(source, &out, &length, NULL, NULL);
-	g_print(out);
+	g_print("%s", out);
 	gtk_text_buffer_insert(buffer, &iter, out, length);
 	g_free(out);
 	return true;


Bug#643371: dasher: FTBFS: game_mode_helper.cpp:327:15: error: format not a string literal and no format arguments [-Werror=format-security]

2011-11-12 Thread Eric Alexander
tags 643371 +patch
thanks
Index: dasher-4.11/Src/Gtk2/game_mode_helper.cpp
===
--- dasher-4.11.orig/Src/Gtk2/game_mode_helper.cpp	2009-12-18 13:40:29.0 -0500
+++ dasher-4.11/Src/Gtk2/game_mode_helper.cpp	2011-11-11 12:33:12.349741593 -0500
@@ -324,6 +324,7 @@
    GTK_DIALOG_MODAL,
    GTK_MESSAGE_INFO,
    GTK_BUTTONS_OK,
+   "%s",
    message);
   gtk_dialog_run (GTK_DIALOG (pDialog));
   gtk_widget_destroy (pDialog);


Bug#643373: desktop-file-utils: FTBFS: update-desktop-database.c:465:7: error: format not a string literal and no format arguments [-Werror=format-security]

2011-11-13 Thread Eric Alexander
tags 643373 +patch
thanks
diff -Nur -x '*.orig' -x '*~' desktop-file-utils-0.15/src/update-desktop-database.c desktop-file-utils-0.15.new/src/update-desktop-database.c
--- desktop-file-utils-0.15/src/update-desktop-database.c	2008-01-20 14:27:21.0 -0500
+++ desktop-file-utils-0.15.new/src/update-desktop-database.c	2011-11-11 16:04:55.642138536 -0500
@@ -462,9 +462,9 @@
   delimiter = "";
   for (i = 0; dirs[i] != NULL; i++)
 {
-  udd_verbose_print (delimiter);
+  udd_verbose_print ("%s", delimiter);
   delimiter = ", ";
-  udd_verbose_print (dirs[i]);
+  udd_verbose_print ("%s", dirs[i]);
 }
   udd_verbose_print ("]\n");
 }


Bug#643374: dis51: FTBFS: pass2.c:186:4: error: format not a string literal and no format arguments [-Werror=format-security]

2011-11-13 Thread Eric Alexander
tags 643374 +patch
thanks
Index: dis51-0.5/pass2.c
===
--- dis51-0.5.orig/pass2.c	2004-02-20 17:09:30.0 -0500
+++ dis51-0.5/pass2.c	2011-11-11 16:10:45.970149283 -0500
@@ -183,7 +183,7 @@
 			fprintf(ofile, "DB 85h  ; illegal opcode");
 		case 1:
 /* no operands */
-			fprintf(ofile, mnemonic[opcode]);
+			fprintf(ofile, "%s", mnemonic[opcode]);
 			break;
 		case 2:
 /* one immediate operand */


Bug#643375: ebview: FTBFS: dialog.c:72:6: error: format not a string literal and no format arguments [-Werror=format-security]

2011-11-13 Thread Eric Alexander
tags 643375 +patch
thanks
Index: ebview-0.3.6.2/src/dialog.c
===
--- ebview-0.3.6.2.orig/src/dialog.c	2004-02-18 21:42:45.0 -0500
+++ ebview-0.3.6.2/src/dialog.c	2011-11-11 16:37:07.038198661 -0500
@@ -69,6 +69,7 @@
 	GTK_DIALOG_DESTROY_WITH_PARENT /* | GTK_DIALOG_NO_SEPARATOR */,
 	GTK_MESSAGE_WARNING,
 	GTK_BUTTONS_OK,
+	"%s",
 	g_message);
 	gtk_dialog_run(GTK_DIALOG(dialog));
 	gtk_widget_destroy(dialog);
@@ -98,6 +99,7 @@
 	GTK_DIALOG_DESTROY_WITH_PARENT /* | GTK_DIALOG_NO_SEPARATOR */,
 	GTK_MESSAGE_ERROR,
 	GTK_BUTTONS_CLOSE,
+	"%s",
 	g_message);
 	
 	gtk_dialog_run(GTK_DIALOG(dialog));


Bug#643383: gfan: FTBFS: application.cpp:548:22: error: format not a string literal and no format arguments [-Werror=format-security]

2011-11-13 Thread Eric Alexander
tags 643383 +patch
thanks
Index: gfan-0.3dfsg/application.cpp
===
--- gfan-0.3dfsg.orig/application.cpp	2007-10-12 19:05:06.0 -0400
+++ gfan-0.3dfsg/application.cpp	2011-11-11 18:31:09.498412367 -0500
@@ -545,7 +545,7 @@
 	  {
 	char c[1024];
 	sprintf(c,"ln -s %s%s %s%s%s\n",path,name,path,name,p->name());
-	fprintf(stderr,c);
+	fprintf(stderr,"%s",c);
 	system(c);
 	  }
   p=p->next;


Bug#643384: gfccore: FTBFS: error.cc:116:52: error: format not a string literal and no format arguments [-Werror=format-security]

2011-11-13 Thread Eric Alexander
tags 643384 +patch
thanks
Index: 643384/gfccore-2.3.1/gfc/glib/error.cc
===
--- 643384.orig/gfccore-2.3.1/gfc/glib/error.cc	2004-08-18 02:05:24.0 -0400
+++ 643384/gfccore-2.3.1/gfc/glib/error.cc	2011-11-11 18:48:30.126444867 -0500
@@ -113,7 +113,7 @@
 {
 	if (error_)
 		clear();
-	g_set_error(&error_, domain, code, message.c_str());
+	g_set_error(&error_, domain, code, "%s", message.c_str());
 }
 
 void
Index: 643384/gfccore-2.3.1/gfc/glib/markup.cc
===
--- 643384.orig/gfccore-2.3.1/gfc/glib/markup.cc	2004-08-18 02:05:16.0 -0400
+++ 643384/gfccore-2.3.1/gfc/glib/markup.cc	2011-11-11 18:50:25.602448477 -0500
@@ -79,7 +79,7 @@
 	G::Error tmp_error;
 	parser->on_start_element(tmp_context, tmp_element_name, attributes, tmp_error);
 	if (tmp_error.get())
-		g_set_error(error, tmp_error.domain(), tmp_error.code(), tmp_error.message());
+		g_set_error(error, tmp_error.domain(), tmp_error.code(), "%s", tmp_error.message());
 }
 
 void
@@ -92,7 +92,7 @@
 	G::Error tmp_error;
 	parser->on_end_element(tmp_context, tmp_element_name, tmp_error);
 	if (tmp_error.get())
-		g_set_error(error, tmp_error.domain(), tmp_error.code(), tmp_error.message());
+		g_set_error(error, tmp_error.domain(), tmp_error.code(), "%s", tmp_error.message());
 }
 
 void
@@ -105,7 +105,7 @@
 	G::Error tmp_error;
 	parser->on_text(tmp_context, tmp_text, tmp_error);
 	if (tmp_error.get())
-		g_set_error(error, tmp_error.domain(), tmp_error.code(), tmp_error.message());
+		g_set_error(error, tmp_error.domain(), tmp_error.code(), "%s", tmp_error.message());
 }
 
 void
@@ -118,7 +118,7 @@
 	G::Error tmp_error;
 	parser->on_passthrough(tmp_context, text, tmp_error);
 	if (tmp_error.get())
-		g_set_error(error, tmp_error.domain(), tmp_error.code(), tmp_error.message());
+		g_set_error(error, tmp_error.domain(), tmp_error.code(), "%s", tmp_error.message());
 }
 
 void