From c344d20bf3193e32cefec82a2750bf7fa7b0347c Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Wed, 18 Feb 2009 12:14:34 +0100 Subject: [PATCH] patches: Removed perl-uninitialized-var.dpatch. This patch has been included upstream. --- debian/changelog | 4 +++- debian/patches/00list | 1 - debian/patches/perl-uninitialized-var.dpatch | 19 ------------------- 3 files changed, 3 insertions(+), 21 deletions(-) delete mode 100755 debian/patches/perl-uninitialized-var.dpatch diff --git a/debian/changelog b/debian/changelog index 069aa3a..2bdcb5f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Wed, 18 Feb 2009 11:55:49 +0100 + -- Sebastian Harl Wed, 18 Feb 2009 12:13:59 +0100 collectd (4.5.1-1) experimental; urgency=low diff --git a/debian/patches/00list b/debian/patches/00list index 12d1fc0..332b35c 100644 --- a/debian/patches/00list +++ b/debian/patches/00list @@ -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 index afac436..0000000 --- a/debian/patches/perl-uninitialized-var.dpatch +++ /dev/null @@ -1,19 +0,0 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## perl-uninitialized-var.dpatch by Ulrich Habel -## -## 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; -- 2.30.2