systemctl: do not print items twice in list-dependencies

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1807485.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2020-03-04 09:33:12 +01:00
parent dd0395b565
commit dbf2801f5a
1 changed files with 2 additions and 0 deletions

View File

@ -785,6 +785,8 @@ static int list_dependencies_get_dependencies(sd_bus *bus, const char *name, cha
if (r < 0)
return log_error_errno(r, "Failed to get properties of %s: %s", name, bus_error_message(&error, r));
strv_uniq(deps); /* Sometimes a unit might have multiple deps on the other unit,
* but we still want to show it just once. */
*ret = TAKE_PTR(deps);
return 0;