tags 643452 + patch
tags 643452 + pending
thanks

Dear maintainer,

I've prepared an NMU for palp (versioned as 1.1-1.1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
 .''`.   Homepage: http://info.comodo.priv.at/ - OpenPGP key ID: 0x8649AA06
 : :' :  Debian GNU/Linux user, admin, & developer - http://www.debian.org/
 `. `'   Member of VIBE!AT & SPI, fellow of Free Software Foundation Europe
   `-    NP: The Cranberries: Zombie
diff -u palp-1.1/debian/changelog palp-1.1/debian/changelog
--- palp-1.1/debian/changelog
+++ palp-1.1/debian/changelog
@@ -1,3 +1,13 @@
+palp (1.1-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix "FTBFS: Subpoly.c:870:3: error: format not a string literal and
+    no format arguments [-Werror=format-security]": add patch
+    format-security.patch: adds missing format arguments.
+    Closes: #643452
+
+ -- gregor herrmann <gre...@debian.org>  Wed, 21 Dec 2011 17:35:45 +0100
+
 palp (1.1-1) unstable; urgency=low
 
   * Initial release (Closes: #480079).
only in patch2:
unchanged:
--- palp-1.1.orig/debian/patches/series
+++ palp-1.1/debian/patches/series
@@ -0,0 +1 @@
+format-security.patch
only in patch2:
unchanged:
--- palp-1.1.orig/debian/patches/format-security.patch
+++ palp-1.1/debian/patches/format-security.patch
@@ -0,0 +1,49 @@
+Description: add format argument to printf, otherwise we get an error with -Werror=format-security
+Origin: vendor
+Bug-Debian: http://bugs.debian.org/643452
+Forwarded: no
+Author: gregor herrmann <gre...@debian.org>
+Last-Update: 2011-12-21
+
+--- a/Subpoly.c
++++ b/Subpoly.c
+@@ -867,7 +867,7 @@
+ 
+   if(rFlag==0) Write_List_2_File(polyo,_NFL); 
+   _NFL->TIME=time(NULL); 
+-  printf(ctime(&_NFL->TIME));
++  printf("%s", ctime(&_NFL->TIME));
+   free(_NFL);
+ }
+ 
+@@ -1190,7 +1190,7 @@
+     
+   printf("max_order=%d\n", max_order);
+   Write_List_2_File(polyo,_NFL); 
+-  _NFL->TIME=time(NULL); printf(ctime(&_NFL->TIME));
++  _NFL->TIME=time(NULL); printf("%s", ctime(&_NFL->TIME));
+   free(_NFL);
+ }
+ 
+--- a/Subadd.c
++++ b/Subadd.c
+@@ -95,7 +95,7 @@
+ NF_List *AuxNFLptr=NULL;		/* dirty trick for Xmin Xmax Xdif */
+ void Init_NF_List(NF_List *L)
+ {    
+-     L->TIME= L->SAVE= time(NULL); printf(ctime(&L->TIME)); L->CLOCK= clock();
++     L->TIME= L->SAVE= time(NULL); printf("%s", ctime(&L->TIME)); L->CLOCK= clock();
+      L->IP_Time = L->NF_Time = 0;  L->d = L->nNF = L->nIP = L->nSLNF = 0;
+      
+      Init_FInfoList(&L->In);	if(*L->iname) Read_In_File(L);	
+--- a/Subdb.c
++++ b/Subdb.c
+@@ -1762,7 +1762,7 @@
+ 	}
+      }	if(*dbin) Close_DB(DB);
+      printf("max_order=%d\n", max_order); Write_List_2_File(polyo,_L); 
+-     _L->TIME=time(NULL); printf(ctime(&_L->TIME));
++     _L->TIME=time(NULL); printf("%s", ctime(&_L->TIME));
+      free(_L);
+ }
+ void VPHM_Sublat_Polys(char sFlag,char mr,char *dbin,char *polyi,char *polyo, 

Attachment: signature.asc
Description: Digital signature

Reply via email to