commit 67d953de6426b35725db819513186f220ec35288
parent 2b47dfd7355fa9485c066308d72c0500c182ee8f
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 3 Oct 2014 12:40:39 +0000
-preping for release 0.9.38
Diffstat:
4 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,6 @@
+Fri Oct 3 14:28:58 CEST 2014
+ Releasing 0.9.38. -CG
+
Mon Sep 29 22:25:34 CEST 2014
Properly decode '+' in URL-encoded POST data. -CG/KM
diff --git a/configure.ac b/configure.ac
@@ -22,15 +22,15 @@
#
AC_PREREQ([2.60])
LT_PREREQ([2.4.0])
-AC_INIT([libmicrohttpd],[0.9.37],[libmicrohttpd@gnu.org])
+AC_INIT([libmicrohttpd],[0.9.38],[libmicrohttpd@gnu.org])
AM_INIT_AUTOMAKE([silent-rules] [subdir-objects])
AC_CONFIG_HEADERS([MHD_config.h])
AC_CONFIG_MACRO_DIR([m4])
AH_TOP([#define _GNU_SOURCE 1])
-LIB_VERSION_CURRENT=37
+LIB_VERSION_CURRENT=38
LIB_VERSION_REVISION=0
-LIB_VERSION_AGE=27
+LIB_VERSION_AGE=28
AC_SUBST(LIB_VERSION_CURRENT)
AC_SUBST(LIB_VERSION_REVISION)
AC_SUBST(LIB_VERSION_AGE)
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 0x00093705
+#define MHD_VERSION 0x00093800
/**
* MHD-internal return code for "YES".
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
@@ -267,7 +267,7 @@ struct MHD_Response
/**
* Closure to give to the content reader @e crc
- * and content reader free callback @crfc.
+ * and content reader free callback @e crfc.
*/
void *crc_cls;
@@ -1414,7 +1414,7 @@ MHD_monotonic_time(void);
* @param arg string that is modified (in place), must be 0-terminated
*/
void
-MHD_escape_plus (char *arg);
+MHD_unescape_plus (char *arg);
#endif