diff options
author | Benjamin Berg <bberg@redhat.com> | 2020-06-23 10:38:08 +0200 |
---|---|---|
committer | Benjamin Berg <bberg@redhat.com> | 2020-06-23 11:04:44 +0200 |
commit | 566cb7e23b5cf46dea27918c5923f3f94f415850 (patch) | |
tree | 6e63f0376524f7bc05e1815667fc80f82a4e3d95 /src/xdg-autostart-generator/xdg-autostart-service.c | |
parent | core: add RootHash and RootVerity service parameters (diff) | |
download | systemd-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.c | 2 |
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 6d10d7052b..6b46cbaec2 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; } |