This is the patch I used in my NMU.

diff -u tinyproxy-1.6.3/debian/changelog tinyproxy-1.6.3/debian/changelog
--- tinyproxy-1.6.3/debian/changelog
+++ tinyproxy-1.6.3/debian/changelog
@@ -1,3 +1,12 @@
+tinyproxy (1.6.3-2.1) unstable; urgency=low
+
+  * Non-maintainer upload to solve release goal.
+  * Add LSB dependency header to init.d scripts (Closes: #466149).
+  * Fix format string bug in log.c (Closes: 366410).  Patch
+    from Karl Chen.
+
+ -- Petter Reinholdtsen <[EMAIL PROTECTED]>  Sat, 29 Mar 2008 12:32:29 +0100
+
 tinyproxy (1.6.3-2) unstable; urgency=low

   * Remove debugging grammar.[ch] and scanner.c as
diff -u tinyproxy-1.6.3/debian/tinyproxy.init 
tinyproxy-1.6.3/debian/tinyproxy.init
--- tinyproxy-1.6.3/debian/tinyproxy.init
+++ tinyproxy-1.6.3/debian/tinyproxy.init
@@ -1,4 +1,11 @@
 #! /bin/sh
+### BEGIN INIT INFO
+# Provides:          tinyproxy
+# Required-Start:    $remote_fs $syslog
+# Required-Stop:     $remote_fs $syslog
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+### END INIT INFO
 #
 # Tinyproxy init.d script
 # Ed Boraas 1999
only in patch2:
unchanged:
--- tinyproxy-1.6.3.orig/src/log.c
+++ tinyproxy-1.6.3/src/log.c
@@ -217,7 +217,7 @@
                        continue;
 #endif
 
-               log_message(level, ptr);
+               log_message(level, "%s", ptr);
        }
 
        vector_delete(log_message_storage);



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to