aboutsummaryrefslogtreecommitdiff
path: root/src/lib/connection_cleanup.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-06-10 21:45:34 +0200
committerChristian Grothoff <christian@grothoff.org>2020-06-10 21:45:34 +0200
commit34aa038d97938cf24b157892bcab6fec173918c8 (patch)
tree27e0dc98bfa82e59d30616e29b11e09b8f1384ed /src/lib/connection_cleanup.c
parenta019057377ee1b67d49264d1029ac615089b2422 (diff)
parentf84bdf0a8c4c11d956f63bc6378aaa7fa9bb95aa (diff)
downloadlibmicrohttpd-34aa038d97938cf24b157892bcab6fec173918c8.tar.gz
libmicrohttpd-34aa038d97938cf24b157892bcab6fec173918c8.zip
Merge branch 'master' of git+ssh://gnunet.org/libmicrohttpd
Diffstat (limited to 'src/lib/connection_cleanup.c')
-rw-r--r--src/lib/connection_cleanup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/connection_cleanup.c b/src/lib/connection_cleanup.c
index d03bc046..a9224524 100644
--- a/src/lib/connection_cleanup.c
+++ b/src/lib/connection_cleanup.c
@@ -90,7 +90,7 @@ MHD_connection_cleanup_ (struct MHD_Daemon *daemon)
90 if ( (MHD_TM_THREAD_PER_CONNECTION == daemon->threading_mode) && 90 if ( (MHD_TM_THREAD_PER_CONNECTION == daemon->threading_mode) &&
91 (! pos->thread_joined) && 91 (! pos->thread_joined) &&
92 (! MHD_join_thread_ (pos->pid.handle)) ) 92 (! MHD_join_thread_ (pos->pid.handle)) )
93 MHD_PANIC (_ ("Failed to join a thread\n")); 93 MHD_PANIC (_ ("Failed to join a thread.\n"));
94#ifdef UPGRADE_SUPPORT 94#ifdef UPGRADE_SUPPORT
95 connection_cleanup_upgraded (pos); 95 connection_cleanup_upgraded (pos);
96#endif /* UPGRADE_SUPPORT */ 96#endif /* UPGRADE_SUPPORT */
@@ -135,7 +135,7 @@ MHD_connection_cleanup_ (struct MHD_Daemon *daemon)
135 EPOLL_CTL_DEL, 135 EPOLL_CTL_DEL,
136 pos->socket_fd, 136 pos->socket_fd,
137 NULL)) 137 NULL))
138 MHD_PANIC (_ ("Failed to remove FD from epoll set\n")); 138 MHD_PANIC (_ ("Failed to remove FD from epoll set.\n"));
139 pos->epoll_state &= ~MHD_EPOLL_STATE_IN_EPOLL_SET; 139 pos->epoll_state &= ~MHD_EPOLL_STATE_IN_EPOLL_SET;
140 } 140 }
141 } 141 }