summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5dbb713)
raw | patch | inline | side by side (parent: 5dbb713)
author | Sebastian Harl <sh@tokkee.org> | |
Wed, 18 Feb 2009 11:14:34 +0000 (12:14 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Wed, 18 Feb 2009 11:14:34 +0000 (12:14 +0100) |
This patch has been included upstream.
debian/changelog | patch | blob | history | |
debian/patches/00list | patch | blob | history | |
debian/patches/perl-uninitialized-var.dpatch | [deleted file] | patch | blob | history |
diff --git a/debian/changelog b/debian/changelog
index 069aa3a3ff6cdc7cc746e57a49122cd1f25bee00..2bdcb5fd9134b3c840b981ad8dbd98fe2994bd91 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
* 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
diff --git a/debian/patches/00list b/debian/patches/00list
index 12d1fc0f24ed08f51f27a9d18c8ab20e136843d5..332b35c8333c22b54c6ead8e9d0f6750c3bfbc7f 100644 (file)
--- a/debian/patches/00list
+++ b/debian/patches/00list
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
+++ /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;