From 85a31c7c6986ae66c9cc2aa48c895b592028b414 Mon Sep 17 00:00:00 2001 From: Carter Li Date: Fri, 20 Sep 2024 16:30:00 +0800 Subject: [PATCH] TerminalShell (Linux): improve perf of yakuake version detection --- src/detection/terminalshell/terminalshell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detection/terminalshell/terminalshell.c b/src/detection/terminalshell/terminalshell.c index 05cf9c4ca..4280f20df 100644 --- a/src/detection/terminalshell/terminalshell.c +++ b/src/detection/terminalshell/terminalshell.c @@ -671,7 +671,7 @@ bool fftsGetTerminalVersion(FFstrbuf* processName, FF_MAYBE_UNUSED FFstrbuf* exe return getTerminalVersionKonsole(exe, version); if(ffStrbufIgnCaseEqualS(processName, "yakuake")) - return getExeVersionGeneral(exe, version);//yakuake 22.12.3 + return getTerminalVersionKonsole(exe, version); // yakuake shares code with konsole if(ffStrbufIgnCaseEqualS(processName, "xfce4-terminal")) return getTerminalVersionXfce4Terminal(exe, version);