aboutsummaryrefslogtreecommitdiff
path: root/src/lib/connection_cleanup.c
diff options
context:
space:
mode:
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 }