summaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-25 17:36:06 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-25 17:36:35 +0000
commit784100cd0426a8b55ea03cd303733d0559f1060c (patch)
tree70a60e97e0a95a02b52cd8fd478193702f09d88e /debian
parentRemoving fix-command-line-help.patch, included upstream. (diff)
downloadmdadm-784100cd0426a8b55ea03cd303733d0559f1060c.tar.xz
mdadm-784100cd0426a8b55ea03cd303733d0559f1060c.zip
Removing strcat-look-for-md-device-in-dev-md.patch, solved differently upstream.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
-rw-r--r--debian/patches/series1
-rw-r--r--debian/patches/strcat-look-for-md-device-in-dev-md.patch17
2 files changed, 0 insertions, 18 deletions
diff --git a/debian/patches/series b/debian/patches/series
index 3fcae35..fd4912d 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -2,7 +2,6 @@ fix-manpages.patch
mdmonitor-service-simplify.diff
host-name-in-default-mailfrom.patch
exit-gracefully-when-md-device-not-found.patch
-strcat-look-for-md-device-in-dev-md.patch
sha1-includes.diff
readlink-path.patch
debian-no-Werror.diff
diff --git a/debian/patches/strcat-look-for-md-device-in-dev-md.patch b/debian/patches/strcat-look-for-md-device-in-dev-md.patch
deleted file mode 100644
index 083fd77..0000000
--- a/debian/patches/strcat-look-for-md-device-in-dev-md.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Look for md device in /dev/md
-Author: Martin Mares <mj@ucw.cz>
-Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=958060
-Forwarded: no
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/Monitor.c
-+++ b/Monitor.c
-@@ -188,7 +188,7 @@ int Monitor(struct mddev_dev *devlist,
- st->devname = xstrdup(mdlist->devname);
- else {
- st->devname = xmalloc(8+strlen(mdlist->devname)+1);
-- strcpy(strcpy(st->devname, "/dev/md/"),
-+ strcat(strcpy(st->devname, "/dev/md/"),
- mdlist->devname);
- }
- st->next = statelist;