commit bca0b80070a8060e805585b1b9e61e50ff723ba1
parent 4f7cfbe58e01670d69f1a845704c618697ff06d6
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Tue, 12 Jan 2016 16:15:24 +0000
microhttpd.h: fixed declaration of MHD_get_reason_phrase_for()
Diffstat:
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,6 @@
+Tue Jan 12 16:10:09 CET 2016
+ Fixed declaraion of MHD_get_reason_phrase_for(). -EG
+
Mon Jan 11 19:58:50 CET 2016
Configure.ac small fixes and refactoring. -EG
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
@@ -130,7 +130,7 @@ typedef intptr_t ssize_t;
* Current version of the library.
* 0x01093001 = 1.9.30-1.
*/
-#define MHD_VERSION 0x00094800
+#define MHD_VERSION 0x00094801
/**
* MHD-internal return code for "YES".
@@ -366,7 +366,7 @@ _MHD_DEPR_MACRO("Macro MHD_LONG_LONG_PRINTF is deprecated, use MHD_UNSIGNED_LONG
* If we don't have a string for a status code, we give the first
* message in that status code class.
*/
-const char *
+_MHD_EXTERN const char *
MHD_get_reason_phrase_for (unsigned int code);