aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-06-04 14:29:30 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-06-04 14:29:30 +0300
commite720ad45879463893281bf7082dba578457d0f8b (patch)
tree7e53d10044509148173eed4378fcb4d432bcee04
parent5c28c2ffcbd886b6dda0dae480cd459890f76cb1 (diff)
downloadlibmicrohttpd-e720ad45879463893281bf7082dba578457d0f8b.tar.gz
libmicrohttpd-e720ad45879463893281bf7082dba578457d0f8b.zip
internal_add_connection(): cosmetics
-rw-r--r--src/microhttpd/daemon.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 8e11b4c0..dc052eac 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -2591,11 +2591,11 @@ internal_add_connection (struct MHD_Daemon *daemon,
2591 2591
2592 MHD_mutex_lock_chk_ (&daemon->cleanup_connection_mutex); 2592 MHD_mutex_lock_chk_ (&daemon->cleanup_connection_mutex);
2593 if (0 == (daemon->options & MHD_USE_THREAD_PER_CONNECTION)) 2593 if (0 == (daemon->options & MHD_USE_THREAD_PER_CONNECTION))
2594 { 2594 {
2595 XDLL_insert (daemon->normal_timeout_head, 2595 XDLL_insert (daemon->normal_timeout_head,
2596 daemon->normal_timeout_tail, 2596 daemon->normal_timeout_tail,
2597 connection); 2597 connection);
2598 } 2598 }
2599 DLL_insert (daemon->connections_head, 2599 DLL_insert (daemon->connections_head,
2600 daemon->connections_tail, 2600 daemon->connections_tail,
2601 connection); 2601 connection);