From: Benjamin Berg Date: Tue, 23 Jun 2020 08:38:08 +0000 (+0200) Subject: xdg-autostart: Fix info message if Type= is not Application X-Git-Tag: v246-rc1~112^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=566cb7e23b5cf46dea27918c5923f3f94f415850;p=thirdparty%2Fsystemd.git xdg-autostart: Fix info message if Type= is not Application The message was copy-pasted and not changed to correctly specify what the problem was. --- diff --git a/src/xdg-autostart-generator/xdg-autostart-service.c b/src/xdg-autostart-generator/xdg-autostart-service.c index 6d10d7052b5..6b46cbaec25 100644 --- a/src/xdg-autostart-generator/xdg-autostart-service.c +++ b/src/xdg-autostart-generator/xdg-autostart-service.c @@ -496,7 +496,7 @@ int xdg_autostart_service_generate_unit( /* Nothing to do if type is not Application. */ if (!streq_ptr(service->type, "Application")) { - log_info("Not generating service for XDG autostart %s, it is hidden.", service->name); + log_info("Not generating service for XDG autostart %s, only Type=Application is supported.", service->name); return 0; }