aboutsummaryrefslogtreecommitdiffstats
path: root/src/xdg-autostart-generator/xdg-autostart-service.c
diff options
context:
space:
mode:
authorBenjamin Berg <bberg@redhat.com>2020-06-23 10:38:08 +0200
committerBenjamin Berg <bberg@redhat.com>2020-06-23 11:04:44 +0200
commit566cb7e23b5cf46dea27918c5923f3f94f415850 (patch)
tree6e63f0376524f7bc05e1815667fc80f82a4e3d95 /src/xdg-autostart-generator/xdg-autostart-service.c
parentcore: add RootHash and RootVerity service parameters (diff)
downloadsystemd-566cb7e23b5cf46dea27918c5923f3f94f415850.tar.xz
systemd-566cb7e23b5cf46dea27918c5923f3f94f415850.zip
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.
Diffstat (limited to 'src/xdg-autostart-generator/xdg-autostart-service.c')
-rw-r--r--src/xdg-autostart-generator/xdg-autostart-service.c2
1 files changed, 1 insertions, 1 deletions
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;
}