summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTorstein Husebø <torstein@huseboe.net>2015-11-12 08:23:21 +0100
committerTorstein Husebø <torstein@huseboe.net>2015-11-12 08:23:21 +0100
commit92bed4620a6d9b1b1b05e25d827d55f626a0ce2c (patch)
treec57936165db57d3ed689181437e579d84eeb5cf8 /src
parentfb5c8184a99ed3379d6a48eed2b83f6f7ee9ee18 (diff)
core: fix typo
Diffstat (limited to 'src')
-rw-r--r--src/core/service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/service.c b/src/core/service.c
index e9d259b84f..203b3ab273 100644
--- a/src/core/service.c
+++ b/src/core/service.c
@@ -594,7 +594,7 @@ static int service_setup_bus_name(Service *s) {
/* Regardless if kdbus is used or not, we always want to be ordered against dbus.socket if both are in the transaction. */
r = unit_add_dependency_by_name(UNIT(s), UNIT_AFTER, SPECIAL_DBUS_SOCKET, NULL, true);
if (r < 0)
- return log_unit_error_errno(UNIT(s), r, "Failed to add depdendency on " SPECIAL_DBUS_SOCKET ": %m");
+ return log_unit_error_errno(UNIT(s), r, "Failed to add dependency on " SPECIAL_DBUS_SOCKET ": %m");
r = unit_watch_bus_name(UNIT(s), s->bus_name);
if (r == -EEXIST)