From eed27a2a4cc7b3c97d811f23a7e1913a0cfc5d6b Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Fri, 8 May 2020 19:10:48 +0200 Subject: [PATCH] shell: Fix return value if the systemd unit is actually successfully run This got broken by last minute changes in commit 2d56395921. There's no change too simple. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1242 --- src/shell-util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shell-util.c b/src/shell-util.c index dd6d312f4..dd9be51a3 100644 --- a/src/shell-util.c +++ b/src/shell-util.c @@ -713,6 +713,7 @@ shell_util_systemd_call (const char *command, -1, NULL, on_systemd_call_cb, (gpointer) command); + return TRUE; #endif /* HAVE_SYSTEMD */ return FALSE;