aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-05-29 18:35:37 +0000
committerChristian Grothoff <christian@grothoff.org>2016-05-29 18:35:37 +0000
commitd89c55afe03d2ea42a187e7b9a85938748f801b7 (patch)
treec4a1149e830e8bdbdde9fbba3a2bf05de9789cf7 /src/microhttpd
parentb8a5c8d0ecaa1401868743751a2aff0043052715 (diff)
downloadlibmicrohttpd-d89c55afe03d2ea42a187e7b9a85938748f801b7.tar.gz
libmicrohttpd-d89c55afe03d2ea42a187e7b9a85938748f801b7.zip
indent
Diffstat (limited to 'src/microhttpd')
-rw-r--r--src/microhttpd/connection.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 2668bb62..882e23ca 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -727,7 +727,7 @@ keepalive_possible (struct MHD_Connection *connection)
727 MHD_HEADER_KIND, 727 MHD_HEADER_KIND,
728 MHD_HTTP_HEADER_CONNECTION); 728 MHD_HTTP_HEADER_CONNECTION);
729 if (MHD_str_equal_caseless_(connection->version, 729 if (MHD_str_equal_caseless_(connection->version,
730 MHD_HTTP_VERSION_1_1)) 730 MHD_HTTP_VERSION_1_1))
731 { 731 {
732 if (NULL == end) 732 if (NULL == end)
733 return MHD_YES; 733 return MHD_YES;
@@ -737,7 +737,7 @@ keepalive_possible (struct MHD_Connection *connection)
737 return MHD_YES; 737 return MHD_YES;
738 } 738 }
739 if (MHD_str_equal_caseless_(connection->version, 739 if (MHD_str_equal_caseless_(connection->version,
740 MHD_HTTP_VERSION_1_0)) 740 MHD_HTTP_VERSION_1_0))
741 { 741 {
742 if (NULL == end) 742 if (NULL == end)
743 return MHD_NO; 743 return MHD_NO;
@@ -2394,7 +2394,7 @@ cleanup_connection (struct MHD_Connection *connection)
2394 } 2394 }
2395 if (0 != (daemon->options & MHD_USE_THREAD_PER_CONNECTION)) 2395 if (0 != (daemon->options & MHD_USE_THREAD_PER_CONNECTION))
2396 { 2396 {
2397 if (MHD_YES != MHD_mutex_lock_ (&daemon->cleanup_connection_mutex)) 2397 if (MHD_YES != MHD_mutex_lock_ (&daemon->cleanup_connection_mutex))
2398 MHD_PANIC ("Failed to acquire cleanup mutex\n"); 2398 MHD_PANIC ("Failed to acquire cleanup mutex\n");
2399 } 2399 }
2400 else 2400 else