r8787 - in packages/trunk/barrage/debian: . patches

Gonéri Le Bouder goneri at alioth.debian.org
Sat Feb 14 14:33:30 UTC 2009


Author: goneri
Date: 2009-02-14 14:33:30 +0000 (Sat, 14 Feb 2009)
New Revision: 8787

Modified:
   packages/trunk/barrage/debian/changelog
   packages/trunk/barrage/debian/control
   packages/trunk/barrage/debian/patches/fix_sprintf
Log:
* adjust fix_sprintf to avoid a FTBFS
* Standard version 3.8.0, no change


Modified: packages/trunk/barrage/debian/changelog
===================================================================
--- packages/trunk/barrage/debian/changelog	2009-02-14 14:16:10 UTC (rev 8786)
+++ packages/trunk/barrage/debian/changelog	2009-02-14 14:33:30 UTC (rev 8787)
@@ -1,6 +1,7 @@
 barrage (1.0.2-4) unstable; urgency=low
 
-  * Upload to unstable 
+  * adjust fix_sprintf to avoid a FTBFS 
+  * Standard version 3.8.0, no change
 
  -- Gonéri Le Bouder <goneri at rulezlan.org>  Sat, 14 Feb 2009 15:15:26 +0100
 

Modified: packages/trunk/barrage/debian/control
===================================================================
--- packages/trunk/barrage/debian/control	2009-02-14 14:16:10 UTC (rev 8786)
+++ packages/trunk/barrage/debian/control	2009-02-14 14:33:30 UTC (rev 8787)
@@ -4,7 +4,7 @@
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
 Uploaders: Gonéri Le Bouder <goneri at rulezlan.org>, Barry deFreese <bddebian at comcast.net>
 Build-Depends: debhelper (>= 5.0.0), quilt, libsdl1.2-dev, libsdl-mixer1.2-dev, binutils (>= 2.14.90.0.7)
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/barrage/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/barrage/?op=log
 Homepage: http://lgames.sourceforge.net/index.php?project=Barrage

Modified: packages/trunk/barrage/debian/patches/fix_sprintf
===================================================================
--- packages/trunk/barrage/debian/patches/fix_sprintf	2009-02-14 14:16:10 UTC (rev 8786)
+++ packages/trunk/barrage/debian/patches/fix_sprintf	2009-02-14 14:33:30 UTC (rev 8787)
@@ -5,7 +5,7 @@
  		    text[strlen(text)-1]='\0';
  		else if (ch!='\b')
 -		    sprintf(text,"%s%c",text,ch);
-+		    sprintf(text + strlen(buff),"%c",ch);
++		    sprintf(text + strlen(text),"%c",ch);
  		/* quick hack to use limited number of characters rather than
  		 * pixels - Michael Speck */
  	        if (strlen(text)/*TextWidth2(Font,text)*/>PixelWidth) 




More information about the Pkg-games-commits mailing list