From 0ec3d45bccf0777af98a2d834bbae1094d3a744f Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Mon, 26 Aug 2024 22:29:15 +0200 Subject: [PATCH] core/service: minor coding style tweak --- src/core/service.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/core/service.c b/src/core/service.c index 663fdb30f2..56bae20112 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -1456,10 +1456,9 @@ static int service_collect_fds( rn_socket_fds = 1; } else { - Unit *u; - /* Pass all our configured sockets for singleton services */ + Unit *u; UNIT_FOREACH_DEPENDENCY(u, UNIT(s), UNIT_ATOM_TRIGGERED_BY) { _cleanup_free_ int *cfds = NULL; int cn_fds; @@ -1472,8 +1471,7 @@ static int service_collect_fds( cn_fds = socket_collect_fds(sock, &cfds); if (cn_fds < 0) return cn_fds; - - if (cn_fds <= 0) + if (cn_fds == 0) continue; if (!rfds) { -- 2.25.1