From 029104921d1310e35cecf599a86a46d9601e9fd5 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Sat, 6 Dec 2014 18:04:58 +0100 Subject: [PATCH] everything: terminate bc instead of quit On some systemd SIGQUIT causes the logger to save a coredump. Quiting bc here does not need save a backtrace here, the termination is not a crash its a "closing" of the program. --- src/modules/everything/evry_plug_calc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/everything/evry_plug_calc.c b/src/modules/everything/evry_plug_calc.c index 80fbc0814..09e334128 100644 --- a/src/modules/everything/evry_plug_calc.c +++ b/src/modules/everything/evry_plug_calc.c @@ -94,7 +94,7 @@ _finish(Evry_Plugin *plugin) if (exe) { - ecore_exe_quit(exe); + ecore_exe_terminate(exe); ecore_exe_free(exe); exe = NULL; }