summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authormartin f. krafft <madduck@debian.org>2009-07-20 16:02:22 +0200
committermartin f. krafft <madduck@debian.org>2009-07-20 16:02:39 +0200
commit7de7bfbaf0a829689d82476106d1a8055f22fb66 (patch)
tree9f4da21dfe4309a1e4b39e60293bcbf72d6a81a1 /debian/patches
parent6dbed99dfc1fae4d1c5947419f9e9fd6096bfd69 (diff)
remove patch obsoleted by ac7de9d
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/Use-initialised-superblock-pointer-fixes-compiler-w.patch37
-rw-r--r--debian/patches/series1
2 files changed, 0 insertions, 38 deletions
diff --git a/debian/patches/Use-initialised-superblock-pointer-fixes-compiler-w.patch b/debian/patches/Use-initialised-superblock-pointer-fixes-compiler-w.patch
deleted file mode 100644
index 977ac387..00000000
--- a/debian/patches/Use-initialised-superblock-pointer-fixes-compiler-w.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 95935f9892c39377375496d1ca2ba7547b07759f Mon Sep 17 00:00:00 2001
-From: martin f. krafft <madduck@debian.org>
-Date: Fri, 8 May 2009 10:56:17 +0200
-Subject: [PATCH] Use initialised superblock pointer, fixes compiler warning
-
-This is from Neil and will be included in the next push; for now, it
-enables the compile.
-
-Signed-off-by: martin f. krafft <madduck@debian.org>
----
- Incremental.c | 4 ++--
- 1 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/Incremental.c b/Incremental.c
-index f7e602e..f8fc359 100644
---- a/Incremental.c
-+++ b/Incremental.c
-@@ -369,14 +369,14 @@ int Incremental(char *devname, int verbose, int runstop,
- /* add disk needs to know about containers */
- if (st->ss->external)
- sra->array.level = LEVEL_CONTAINER;
-- err = add_disk(mdfd, st2, sra, &info2);
-+ err = add_disk(mdfd, st, sra, &info2);
- if (err < 0 && errno == EBUSY) {
- /* could be another device present with the same
- * disk.number. Find and reject any such
- */
- find_reject(mdfd, st, sra, info.disk.number,
- info.events, verbose, chosen_name);
-- err = add_disk(mdfd, st2, sra, &info2);
-+ err = add_disk(mdfd, st, sra, &info2);
- }
- if (err < 0) {
- fprintf(stderr, Name ": failed to add %s to %s: %s.\n",
---
-1.6.2.4
-
diff --git a/debian/patches/series b/debian/patches/series
index a4f03a5b..cde201d0 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
Bump-version-output.patch -p1
-Use-initialised-superblock-pointer-fixes-compiler-w.patch -p1