]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
userdbd: prefix parameters with their names more
authorLennart Poettering <lennart@poettering.net>
Thu, 22 Jun 2023 16:50:43 +0000 (18:50 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 22 Jun 2023 16:58:31 +0000 (18:58 +0200)
src/userdb/userdbd-manager.c

index 1895e151f4eaa0e7e574e52795c949ed94213e1e..372de720f782b5ec6b2cc013a8e2ca6f8441f766 100644 (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);
 }