From 0f9cb8f5eef59ebb815cb1e9a8f41189dedc719c Mon Sep 17 00:00:00 2001 From: Debian NVIDIA Maintainers Date: Sat, 27 Jan 2024 01:28:10 +0100 Subject: [PATCH] Ignore error on X shutdown Origin: upstream, https://github.com/Bumblebee-Project/Bumblebee/commit/25387e92822fb1a56fa43f1f9f636b987018d068 Applied-Upstream: commit:25387e92822fb1a56fa43f1f9f636b987018d068 Gbp-Pq: Name ignore-error-on-X-shutdown.patch --- src/bblogger.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bblogger.c b/src/bblogger.c index 55aa163..aaadba9 100644 --- a/src/bblogger.c +++ b/src/bblogger.c @@ -144,7 +144,8 @@ static void parse_xorg_output(char * string){ /* Error lines are errors. */ if (strncmp(string, "(EE)", 4) == 0){ if (strstr(string, "Failed to load module \"kbd\"") || - strstr(string, "No input driver matching")) { + strstr(string, "No input driver matching") || + strstr(string, "Server terminated successfully")) { /* non-fatal errors */ prio = LOG_DEBUG; } else { -- 2.30.2