summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-02-03 15:46:59 +0100
committerDavid Seifert <soap@gentoo.org>2017-02-04 22:19:12 +0100
commit30082e11acbb8b2dbff1162798133d2e9a01ebca (patch)
treec759ced626d8823ecfd5a43c9fcad28cd5764c4b /sys-apps
parentsys-apps/policycoreutils: remove unused patches (diff)
downloadgentoo-30082e11acbb8b2dbff1162798133d2e9a01ebca.tar.gz
gentoo-30082e11acbb8b2dbff1162798133d2e9a01ebca.tar.bz2
gentoo-30082e11acbb8b2dbff1162798133d2e9a01ebca.zip
sys-apps/cciss_vol_status: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/3791
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/cciss_vol_status/files/1.06-strlen-typo.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/sys-apps/cciss_vol_status/files/1.06-strlen-typo.patch b/sys-apps/cciss_vol_status/files/1.06-strlen-typo.patch
deleted file mode 100644
index a65f29dac087..000000000000
--- a/sys-apps/cciss_vol_status/files/1.06-strlen-typo.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -uNr cciss_vol_status-1.06.ORIG//cciss_vol_status.c cciss_vol_status-1.06/cciss_vol_status.c
---- cciss_vol_status-1.06.ORIG//cciss_vol_status.c 2010-05-02 16:33:47.634833662 +0100
-+++ cciss_vol_status-1.06/cciss_vol_status.c 2010-05-02 16:34:03.351822015 +0100
-@@ -1004,7 +1004,7 @@
- if (status < 0)
- return 0;
- for (i = 0; prod[i] != NULL; i++) {
-- if (strncmp(std_inq+8, prod[i], strnlen(prod[i])) == 0)
-+ if (strncmp(std_inq+8, prod[i], strlen(prod[i])) == 0)
- return 1;
- }
- return 0;