gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [libmicrohttpd] branch master updated: Fixed wrong macro na


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] branch master updated: Fixed wrong macro name in 218694a400beaf164712121475a6e22fd01b7b71
Date: Wed, 05 Apr 2017 12:05:21 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

The following commit(s) were added to refs/heads/master by this push:
     new 0f30ecc8 Fixed wrong macro name in 
218694a400beaf164712121475a6e22fd01b7b71
0f30ecc8 is described below

commit 0f30ecc8190bc14b85c06beb86d1f1597a275d61
Author: Evgeny Grin (Karlson2k) <address@hidden>
AuthorDate: Wed Apr 5 13:05:12 2017 +0300

    Fixed wrong macro name in 218694a400beaf164712121475a6e22fd01b7b71
---
 src/microhttpd/connection.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 95835d59..0b6ce3bd 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -1203,9 +1203,9 @@ build_header_response (struct MHD_Connection *connection)
   if (must_add_close)
     size += MHD_STATICSTR_LEN_ ("Connection: close\r\n");
   if (must_add_keep_alive)
-    size += MHD_MACROSTR_LEN_ ("Connection: Keep-Alive\r\n");
+    size += MHD_STATICSTR_LEN_ ("Connection: Keep-Alive\r\n");
   if (must_add_chunked_encoding)
-    size += MHD_MACROSTR_LEN_ ("Transfer-Encoding: chunked\r\n");
+    size += MHD_STATICSTR_LEN_ ("Transfer-Encoding: chunked\r\n");
   if (must_add_content_length)
     size += content_length_len;
   EXTRA_CHECK (! (must_add_close && must_add_keep_alive) );

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]