From: Mike Yuan Date: Mon, 26 Aug 2024 20:29:15 +0000 (+0200) Subject: core/service: minor coding style tweak X-Git-Tag: v257-rc1~553^2~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ec3d45bccf0777af98a2d834bbae1094d3a744f;p=thirdparty%2Fsystemd.git core/service: minor coding style tweak --- diff --git a/src/core/service.c b/src/core/service.c index 663fdb30f2c..56bae20112e 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) {