]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
activate: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 17 Feb 2023 00:26:34 +0000 (09:26 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 17 Feb 2023 00:49:51 +0000 (09:49 +0900)
src/activate/activate.c

index ef1289f0e317136908748f8670dda8d7e41f21f2..66429c8ec92561388a5154a66ccfe71d5b296f58 100644 (file)
@@ -82,10 +82,8 @@ static int open_sockets(int *epoll_fd, bool accept) {
                         return log_error_errno(r, "Failed to close all file descriptors: %m");
         }
 
-        /** Note: we leak some fd's on error here. I doesn't matter
-         *  much, since the program will exit immediately anyway, but
-         *  would be a pain to fix.
-         */
+        /* Note: we leak some fd's on error here. It doesn't matter much, since the program will exit
+         * immediately anyway, but would be a pain to fix. */
 
         STRV_FOREACH(address, arg_listen) {
                 r = make_socket_fd(LOG_DEBUG, *address, arg_socket_type, (arg_accept * SOCK_CLOEXEC));