aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-01-12 16:15:24 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-01-12 16:15:24 +0000
commitbca0b80070a8060e805585b1b9e61e50ff723ba1 (patch)
tree00c6c52fdeeb4fe410b42b19d9ed2163da647fcc
parent4f7cfbe58e01670d69f1a845704c618697ff06d6 (diff)
downloadlibmicrohttpd-bca0b80070a8060e805585b1b9e61e50ff723ba1.tar.gz
libmicrohttpd-bca0b80070a8060e805585b1b9e61e50ff723ba1.zip
microhttpd.h: fixed declaration of MHD_get_reason_phrase_for()
-rw-r--r--ChangeLog3
-rw-r--r--src/include/microhttpd.h4
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 92910b87..ac8e0ce3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
1Tue Jan 12 16:10:09 CET 2016
2 Fixed declaraion of MHD_get_reason_phrase_for(). -EG
3
1Mon Jan 11 19:58:50 CET 2016 4Mon Jan 11 19:58:50 CET 2016
2 Configure.ac small fixes and refactoring. -EG 5 Configure.ac small fixes and refactoring. -EG
3 6
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 17d8c85c..838fe65a 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -130,7 +130,7 @@ typedef intptr_t ssize_t;
130 * Current version of the library. 130 * Current version of the library.
131 * 0x01093001 = 1.9.30-1. 131 * 0x01093001 = 1.9.30-1.
132 */ 132 */
133#define MHD_VERSION 0x00094800 133#define MHD_VERSION 0x00094801
134 134
135/** 135/**
136 * MHD-internal return code for "YES". 136 * MHD-internal return code for "YES".
@@ -366,7 +366,7 @@ _MHD_DEPR_MACRO("Macro MHD_LONG_LONG_PRINTF is deprecated, use MHD_UNSIGNED_LONG
366 * If we don't have a string for a status code, we give the first 366 * If we don't have a string for a status code, we give the first
367 * message in that status code class. 367 * message in that status code class.
368 */ 368 */
369const char * 369_MHD_EXTERN const char *
370MHD_get_reason_phrase_for (unsigned int code); 370MHD_get_reason_phrase_for (unsigned int code);
371 371
372 372