aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-10-20 22:12:22 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-10-20 22:12:22 +0300
commite55249435fa32e514af322da7af90d0bc4d9fabd (patch)
treeeb4a01cb47eee067a56036884725da74221dc9fa
parent2efd5f535ed28b679311ee38f53ba80fb679f305 (diff)
downloadlibmicrohttpd-e55249435fa32e514af322da7af90d0bc4d9fabd.tar.gz
libmicrohttpd-e55249435fa32e514af322da7af90d0bc4d9fabd.zip
English grammar fixes
-rw-r--r--configure.ac2
-rw-r--r--src/microhttpd/daemon.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index d8d12277..3d1b679c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2402,7 +2402,7 @@ AC_MSG_NOTICE([GNU libmicrohttpd ${PACKAGE_VERSION} Configuration Summary:
2402 Target directory: ${prefix} 2402 Target directory: ${prefix}
2403 Cross-compiling: ${cross_compiling} 2403 Cross-compiling: ${cross_compiling}
2404 Operating System: ${host_os}${os_ver_msg} 2404 Operating System: ${host_os}${os_ver_msg}
2405 Shutdown of listening socket trigger select: ${mhd_cv_host_shtdwn_trgr_select} 2405 Shutdown of listening socket triggers select: ${mhd_cv_host_shtdwn_trgr_select}
2406 Inter-thread comm: ${use_itc} 2406 Inter-thread comm: ${use_itc}
2407 poll support: ${enable_poll=no} 2407 poll support: ${enable_poll=no}
2408 epoll support: ${enable_epoll=no} 2408 epoll support: ${enable_epoll=no}
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 5ce5a457..710ba55b 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -3219,10 +3219,10 @@ MHD_add_connection (struct MHD_Daemon *daemon,
3219 (0 == (daemon->options & MHD_USE_ITC))) 3219 (0 == (daemon->options & MHD_USE_ITC)))
3220 { 3220 {
3221 MHD_DLOG (daemon, 3221 MHD_DLOG (daemon,
3222 _ ("MHD_add_connection() has called for daemon started without" 3222 _ ("MHD_add_connection() has been called for daemon started"
3223 " MHD_USE_ITC flag.\nDaemon will not process newly added" 3223 " without MHD_USE_ITC flag.\nDaemon will not process newly"
3224 " connection until any activity occurs in already added" 3224 " added connection until any activity occurs in already"
3225 " sockets.\n")); 3225 " added sockets.\n"));
3226 } 3226 }
3227#endif /* HAVE_MESSAGES */ 3227#endif /* HAVE_MESSAGES */
3228 3228