summaryrefslogtreecommitdiffstats
path: root/source/a/gpm/gpm-1.20.1-no-console-error.patch
diff options
context:
space:
mode:
Diffstat (limited to 'source/a/gpm/gpm-1.20.1-no-console-error.patch')
-rw-r--r--source/a/gpm/gpm-1.20.1-no-console-error.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/source/a/gpm/gpm-1.20.1-no-console-error.patch b/source/a/gpm/gpm-1.20.1-no-console-error.patch
deleted file mode 100644
index 20c177b4d..000000000
--- a/source/a/gpm/gpm-1.20.1-no-console-error.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- gpm-1.20.1/src/console.c.no-console-error 2006-01-18 17:06:15.000000000 +0100
-+++ gpm-1.20.1/src/console.c 2006-01-18 17:08:19.000000000 +0100
-@@ -249,8 +249,10 @@
- /* Failed, try OLD console */
- else if (stat(GPM_OLD_CONSOLE, &buf) == 0)
- console.device = GPM_OLD_CONSOLE;
-- else
-- gpm_report(GPM_PR_OOPS, "Can't determine console device");
-+ else { // XXX handle this gracefully?
-+ fprintf( stderr, "no console device found" );
-+ exit( 1 );
-+ }
-
- return console.device;
- }