From dbf2801f5ac4dea3834508fd96a2e0f1803f91ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Wed, 4 Mar 2020 09:33:12 +0100 Subject: systemctl: do not print items twice in list-dependencies Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1807485. --- src/systemctl/systemctl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index f44db4ffc3..e02677d541 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -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; -- cgit v1.2.1