From: Debian NVIDIA Maintainers Date: Sat, 2 Jan 2021 13:54:24 +0000 (+0000) Subject: Ignore error on X shutdown X-Git-Tag: archive/raspbian/3.2.1-27+rpi1^2~15 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1f3181e93d3e457bd2b077e91580a62d7a8bb698;p=bumblebee.git 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 --- 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 {