From: Lennart Poettering Date: Thu, 22 Jun 2023 16:50:43 +0000 (+0200) Subject: userdbd: prefix parameters with their names more X-Git-Tag: v254-rc1~136^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ef0103f2265a68e32847deaf84588c2fa711f3a;p=thirdparty%2Fsystemd.git userdbd: prefix parameters with their names more --- diff --git a/src/userdb/userdbd-manager.c b/src/userdb/userdbd-manager.c index 1895e151f4e..372de720f78 100644 --- a/src/userdb/userdbd-manager.c +++ b/src/userdb/userdbd-manager.c @@ -49,7 +49,7 @@ static int on_sigusr2(sd_event_source *s, const struct signalfd_siginfo *si, voi assert(s); - (void) start_workers(m, true); /* Workers told us there's more work, let's add one more worker as long as we are below the high watermark */ + (void) start_workers(m, /* explicit_request=*/ true); /* Workers told us there's more work, let's add one more worker as long as we are below the high watermark */ return 0; } @@ -281,5 +281,5 @@ int manager_startup(Manager *m) { if (setsockopt(m->listen_fd, SOL_SOCKET, SO_RCVTIMEO, TIMEVAL_STORE(LISTEN_TIMEOUT_USEC), sizeof(struct timeval)) < 0) return log_error_errno(errno, "Failed to se SO_RCVTIMEO: %m"); - return start_workers(m, false); + return start_workers(m, /* explicit_request= */ false); }