From 30c4822935a31bdc06774e8208abad8a6139baf030520ba963dbdf0f2d10270e Mon Sep 17 00:00:00 2001 From: "Dr. Werner Fink" Date: Mon, 20 Dec 2010 12:07:13 +0000 Subject: [PATCH] . OBS-URL: https://build.opensuse.org/package/show/shells/tcsh?expand=0&rev=21 --- 12_unknown_lscolors.patch | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 12_unknown_lscolors.patch diff --git a/12_unknown_lscolors.patch b/12_unknown_lscolors.patch deleted file mode 100644 index 5253a1c..0000000 --- a/12_unknown_lscolors.patch +++ /dev/null @@ -1,24 +0,0 @@ -Author: Franz Pletz -Description: Don't die on unknown LS_COLORS values -Removing the patch causes a segfault when dircolors is set by coreutils' dircolors. -Debian-Bug: #592089 - ---- a/tw.color.c -+++ b/tw.color.c -@@ -239,13 +239,10 @@ parseLS_COLORS(const Char *value) - if ((Char)variables[i].variable[0] == (v[0] & CHAR) && - (Char)variables[i].variable[1] == (v[1] & CHAR)) - break; -- if (i < nvariables) { -- v += 3; -+ v += 3; -+ if (i < nvariables) - getstring(&c, &v, &variables[i].color, ':'); -- continue; -- } -- else -- stderror(ERR_BADCOLORVAR, v[0], v[1]); -+ continue; - } - break; - }