diff options
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.patch | 15 |
1 files changed, 15 insertions, 0 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 new file mode 100644 index 00000000..20c177b4 --- /dev/null +++ b/source/a/gpm/gpm-1.20.1-no-console-error.patch @@ -0,0 +1,15 @@ +--- 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; + } |