Merge pull request #1862 from torstehu/fix-typo2

core: fix typo
This commit is contained in:
Daniel Mack 2015-11-12 10:15:19 +01:00
commit 7fcaf31e39

View file

@ -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)