Code

patches: Removed perl-uninitialized-var.dpatch.
authorSebastian Harl <sh@tokkee.org>
Wed, 18 Feb 2009 11:14:34 +0000 (12:14 +0100)
committerSebastian Harl <sh@tokkee.org>
Wed, 18 Feb 2009 11:14:34 +0000 (12:14 +0100)
This patch has been included upstream.

debian/changelog
debian/patches/00list
debian/patches/perl-uninitialized-var.dpatch [deleted file]

index 069aa3a3ff6cdc7cc746e57a49122cd1f25bee00..2bdcb5fd9134b3c840b981ad8dbd98fe2994bd91 100644 (file)
@@ -22,8 +22,10 @@ collectd (4.6.0-1) unstable; urgency=low
   * Uploading to unstable, since Lenny has been released.
   * New debconf template translations:
     - vi.po, thanks to Clytie Siddall (Closes: #515872).
+  * debian/patches:
+    - Removed perl-uninitialized-var.dpatch - included upstream.
 
- -- Sebastian Harl <sh@tokkee.org>  Wed, 18 Feb 2009 11:55:49 +0100
+ -- Sebastian Harl <sh@tokkee.org>  Wed, 18 Feb 2009 12:13:59 +0100
 
 collectd (4.5.1-1) experimental; urgency=low
 
index 12d1fc0f24ed08f51f27a9d18c8ab20e136843d5..332b35c8333c22b54c6ead8e9d0f6750c3bfbc7f 100644 (file)
@@ -1,4 +1,3 @@
 rrd_filter_path.dpatch
 collection_conf_path.dpatch
-perl-uninitialized-var.dpatch
 
diff --git a/debian/patches/perl-uninitialized-var.dpatch b/debian/patches/perl-uninitialized-var.dpatch
deleted file mode 100755 (executable)
index afac436..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## perl-uninitialized-var.dpatch by Ulrich Habel <rhaen@netbsd.org>
-##
-## DP: Fixed an uninitialized variable warning.
-
-@DPATCH@
-
-diff a/src/perl.c b/src/perl.c
---- a/src/perl.c
-+++ b/src/perl.c
-@@ -1790,7 +1790,7 @@ static int perl_config (oconfig_item_t *ci)
-       for (i = 0; i < ci->children_num; ++i) {
-               oconfig_item_t *c = ci->children + i;
--              int current_status;
-+              int current_status = 0;
-               if (NULL != perl_threads)
-                       aTHX = PERL_GET_CONTEXT;