1
0
mirror of https://github.com/systemd/systemd.git synced 2025-08-25 13:49:55 +03:00

userdbd: prefix parameters with their names more

This commit is contained in:
Lennart Poettering
2023-06-22 18:50:43 +02:00
parent c659d0f55e
commit 3ef0103f22

View File

@ -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);
}