summaryrefslogtreecommitdiff
path: root/systemd.c
diff options
context:
space:
mode:
Diffstat (limited to 'systemd.c')
-rw-r--r--systemd.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/systemd.c b/systemd.c
index 21268b7..a592d3a 100644
--- a/systemd.c
+++ b/systemd.c
@@ -37,7 +37,7 @@ systemd_service_object_path(struct cfg *cfg, const char *service)
const char *s;
if (empty_str(service)) {
- error("invalid arguments\n");
+ error("invalid arguments");
return NULL;
}
@@ -86,7 +86,7 @@ get_bus(struct cfg *cfg)
if (!cfg->sd_bus) {
r = sd_bus_open_user(&cfg->sd_bus);
if (r < 0) {
- error("failed to connect to user system bus: %s\n", strerror(-r));
+ error("failed to connect to user system bus: %s", strerror(-r));
cfg->sd_bus_failed = true;
return NULL;
}
@@ -126,17 +126,17 @@ systemd_service_running(struct cfg *cfg, struct server *server)
&error,
&status);
if (r < 0) {
- error("failed to get status for service %s (%s): %s\n",
+ error("failed to get status for service %s (%s): %s",
server->systemd_service, server->systemd_obj, error.message);
goto out;
}
if (!strcmp(status, "active")) {
running = true;
- debug(DBG_SYSD, "systemd service %s (%s) is active\n",
+ debug(DBG_SYSD, "systemd service %s (%s) is active",
server->systemd_service, server->systemd_obj);
} else
- debug(DBG_SYSD, "systemd service %s (%s) is not active\n",
+ debug(DBG_SYSD, "systemd service %s (%s) is not active",
server->systemd_service, server->systemd_obj);
out:
@@ -168,18 +168,18 @@ systemd_service_action(struct cfg *cfg, struct server *server, const char *actio
"s",
"fail");
if (r < 0) {
- error("failed to perform action %s on systemd service %s: %s\n",
+ error("failed to perform action %s on systemd service %s: %s",
action, server->systemd_service, error.message);
goto out;
}
r = sd_bus_message_read(m, "o", &path);
if (r < 0) {
- error("failed to parse response message: %s\n", strerror(-r));
+ error("failed to parse response message: %s", strerror(-r));
goto out;
}
- verbose("action %s queued for service %s\n",
+ verbose("action %s queued for service %s",
action, server->systemd_service);
performed = true;