diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-02-17 01:26:34 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-02-17 01:49:51 +0100 |
commit | a601e702d5a857d6645c15e9c476df296ba537e8 (patch) | |
tree | 6795c3bb7c641da5fd917da2dc16ebf1ed4a56d1 /src/activate/activate.c | |
parent | activate: use DEFINE_MAIN_FUNC() macro (diff) | |
download | systemd-a601e702d5a857d6645c15e9c476df296ba537e8.tar.xz systemd-a601e702d5a857d6645c15e9c476df296ba537e8.zip |
activate: fix typo
Diffstat (limited to '')
-rw-r--r-- | src/activate/activate.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/activate/activate.c b/src/activate/activate.c index ef1289f0e3..66429c8ec9 100644 --- a/src/activate/activate.c +++ b/src/activate/activate.c @@ -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)); |