aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection.c
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-04-12 12:53:21 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-04-12 12:53:21 +0000
commit69a35bc3a06cc0ef1b52c49a64f93dcb661e0989 (patch)
treeec1bf5cffc0adfbc9a4c9900e59fce957507602f /src/microhttpd/connection.c
parent8107709672bfd4f71c8f89e0f51494b4bd02adef (diff)
downloadlibmicrohttpd-69a35bc3a06cc0ef1b52c49a64f93dcb661e0989.tar.gz
libmicrohttpd-69a35bc3a06cc0ef1b52c49a64f93dcb661e0989.zip
connection.c: removed unused variable, silent compiler warning
Diffstat (limited to 'src/microhttpd/connection.c')
-rw-r--r--src/microhttpd/connection.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 6e75ebd5..e6b367a8 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -2051,10 +2051,9 @@ static void
2051parse_connection_headers (struct MHD_Connection *connection) 2051parse_connection_headers (struct MHD_Connection *connection)
2052{ 2052{
2053 const char *clen; 2053 const char *clen;
2054 MHD_UNSIGNED_LONG_LONG cval;
2055 struct MHD_Response *response; 2054 struct MHD_Response *response;
2056 const char *enc; 2055 const char *enc;
2057 char *end; 2056 const char *end;
2058 2057
2059 parse_cookie_header (connection); 2058 parse_cookie_header (connection);
2060 if ( (0 != (MHD_USE_PEDANTIC_CHECKS & connection->daemon->options)) && 2059 if ( (0 != (MHD_USE_PEDANTIC_CHECKS & connection->daemon->options)) &&