[Pkg-voip-commits] r4632 - in /srtp/trunk/debian: changelog patches/1003_print_unsigned_integer_as_such.patch patches/series

js at alioth.debian.org js at alioth.debian.org
Sat Sep 29 14:21:13 UTC 2007


Author: js
Date: Sat Sep 29 14:21:13 2007
New Revision: 4632

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=4632
Log:
* Add patch 1003 to correct printf integer type in test/srtp_driver.

Added:
    srtp/trunk/debian/patches/1003_print_unsigned_integer_as_such.patch
Modified:
    srtp/trunk/debian/changelog
    srtp/trunk/debian/patches/series

Modified: srtp/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/srtp/trunk/debian/changelog?rev=4632&op=diff
==============================================================================
--- srtp/trunk/debian/changelog (original)
+++ srtp/trunk/debian/changelog Sat Sep 29 14:21:13 2007
@@ -1,6 +1,7 @@
 srtp (1.4.2.dfsg-6) UNRELEASED; urgency=low
 
   * Move Homepage to own field (from pseudo-field in long description).
+  * Add patch 1003 to correct printf integer type in test/srtp_driver.
 
  -- Jonas Smedegaard <dr at jones.dk>  Sat, 29 Sep 2007 13:36:44 +0200
 

Added: srtp/trunk/debian/patches/1003_print_unsigned_integer_as_such.patch
URL: http://svn.debian.org/wsvn/pkg-voip/srtp/trunk/debian/patches/1003_print_unsigned_integer_as_such.patch?rev=4632&op=file
==============================================================================
--- srtp/trunk/debian/patches/1003_print_unsigned_integer_as_such.patch (added)
+++ srtp/trunk/debian/patches/1003_print_unsigned_integer_as_such.patch Sat Sep 29 14:21:13 2007
@@ -1,0 +1,12 @@
+diff -ruNp srtp-1.4.2.dfsg.orig/test/srtp_driver.c srtp-1.4.2.dfsg/test/srtp_driver.c
+--- srtp-1.4.2.dfsg.orig/test/srtp_driver.c	2007-09-29 15:53:18.000000000 +0200
++++ srtp-1.4.2.dfsg/test/srtp_driver.c	2007-09-29 16:07:54.000000000 +0200
+@@ -152,7 +152,7 @@ main (int argc, char *argv[]) {
+    */
+   if (sizeof(srtp_hdr_t) != 12) {
+      printf("error: srtp_hdr_t has incorrect size"
+-	    "(size is %ld bytes, expected 12)\n", 
++	    "(size is %u bytes, expected 12)\n", 
+ 	    sizeof(srtp_hdr_t));
+     exit(1);
+   }

Modified: srtp/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-voip/srtp/trunk/debian/patches/series?rev=4632&op=diff
==============================================================================
--- srtp/trunk/debian/patches/series (original)
+++ srtp/trunk/debian/patches/series Sat Sep 29 14:21:13 2007
@@ -1,3 +1,4 @@
 0001_cvs20070616.patch
 #1001_negative_valued_char_must_be_signed.patch
 1002_add_explicit_path_in_test_script.patch
+1003_print_unsigned_integer_as_such.patch




More information about the Pkg-voip-commits mailing list