summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authormadduck <madduck@3cfab66f-1918-0410-86b3-c06b76f9a464>2006-08-07 10:10:08 +0000
committermadduck <madduck@3cfab66f-1918-0410-86b3-c06b76f9a464>2006-08-07 10:10:08 +0000
commited42da35ee08603d801716f8c4d7229ad9d2526c (patch)
tree293fc74f1effd3aae4ca1ad76e0004bc7959bbe1 /debian/patches
parent37871102e00f6eca09960e7931474ebd485b21ae (diff)
preparing 2.5.3-1, but will not release until 2.5.2-10 is in testing
Diffstat (limited to 'debian/patches')
-rwxr-xr-xdebian/patches/99-run-logic-FIX.dpatch53
1 files changed, 0 insertions, 53 deletions
diff --git a/debian/patches/99-run-logic-FIX.dpatch b/debian/patches/99-run-logic-FIX.dpatch
deleted file mode 100755
index 3afd32d7..00000000
--- a/debian/patches/99-run-logic-FIX.dpatch
+++ /dev/null
@@ -1,53 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 99-run-logic-FIX.dpatch by martin f. krafft <madduck@debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: No description.
-
-@DPATCH@
-diff -urNad mdadm-2.5.2.obsolete.0.0575067182808233~/mdadm.c mdadm-2.5.2.obsolete.0.0575067182808233/mdadm.c
---- mdadm-2.5.2.obsolete.0.0575067182808233~/mdadm.c 2006-06-26 06:11:00.000000000 +0100
-+++ mdadm-2.5.2.obsolete.0.0575067182808233/mdadm.c 2006-08-01 14:16:07.253413451 +0100
-@@ -1017,7 +1017,7 @@
- else {
- rv |= Assemble(ss, array_list->devname, mdfd,
- array_list,
-- devlist, NULL,
-+ NULL, NULL,
- readonly, runstop, NULL, homehost, verbose-quiet, force);
- if (rv == 0) cnt++;
- }
-@@ -1036,7 +1036,7 @@
- do {
- rv2 = Assemble(ss, NULL, -1,
- &ident,
-- devlist, NULL,
-+ NULL, NULL,
- readonly, runstop, NULL, homehost, verbose-quiet, force);
- if (rv2==0) {
- cnt++;
-@@ -1049,7 +1049,6 @@
- auto_update_home = 0;
- } while (rv2!=2);
- /* Incase there are stacked devices, we need to go around again */
-- devlist = conf_get_devs();
- } while (acnt);
- if (cnt == 0 && auto_update_home && homehost) {
- /* Nothing found, maybe we need to bootstrap homehost info */
-@@ -1058,7 +1057,7 @@
- do {
- rv2 = Assemble(ss, NULL, -1,
- &ident,
-- devlist, NULL,
-+ NULL, NULL,
- readonly, runstop, "homehost", homehost, verbose-quiet, force);
- if (rv2==0) {
- cnt++;
-@@ -1066,7 +1065,6 @@
- }
- } while (rv2!=2);
- /* Incase there are stacked devices, we need to go around again */
-- devlist = conf_get_devs();
- } while (acnt);
- }
- if (cnt == 0 && rv == 0) {