summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-shells/localshell/files/localshell-1.3.1-glibc-2.10.patch')
-rw-r--r--app-shells/localshell/files/localshell-1.3.1-glibc-2.10.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/app-shells/localshell/files/localshell-1.3.1-glibc-2.10.patch b/app-shells/localshell/files/localshell-1.3.1-glibc-2.10.patch
deleted file mode 100644
index 7bdd8f9a8d1f..000000000000
--- a/app-shells/localshell/files/localshell-1.3.1-glibc-2.10.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ur localshell-1.3.1.orig/src/config.cxx localshell-1.3.1/src/config.cxx
---- localshell-1.3.1.orig/src/config.cxx 2009-01-09 03:40:11.000000000 +0200
-+++ localshell-1.3.1/src/config.cxx 2009-08-09 18:15:17.000000000 +0300
-@@ -121,7 +121,7 @@
- // PRIORITY,SHELL,ALLOWED
- long priority = atol(argvalue);
-
-- char* shell = strstr(argvalue,",");
-+ char* shell = const_cast<char*> (strstr(argvalue,","));
- if(NULL == shell || '\0' == shell[1] ) {
- fprintf(stderr,"%s: badly formatted entry (shell):%s\n",PACKAGE,argvalue);
- return EINVAL;