This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit 700b0ed2355a80d37e48307851ae44266671792b Author: Petro Karashchenko <petro.karashche...@gmail.com> AuthorDate: Fri Apr 14 21:50:43 2023 +0300 netutils/netlib: fix typos in comments Signed-off-by: Petro Karashchenko <petro.karashche...@gmail.com> --- netutils/netlib/netlib_server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netutils/netlib/netlib_server.c b/netutils/netlib/netlib_server.c index 30deef28d..c62bec9f5 100644 --- a/netutils/netlib/netlib_server.c +++ b/netutils/netlib/netlib_server.c @@ -89,7 +89,7 @@ void netlib_server(uint16_t portno, for (; ; ) { - /* Accept the next connectin */ + /* Accept the next connection */ addrlen = sizeof(struct sockaddr_in); acceptsd = accept(listensd, (struct sockaddr *)&myaddr, &addrlen); @@ -157,7 +157,7 @@ void netlib_server(uint16_t portno, pthread_detach(child); } - /* Close the listerner socket */ + /* Close the listener socket */ close(listensd); }