aboutsummaryrefslogtreecommitdiff
path: root/src/include/microhttpd.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-01-18 19:12:14 +0000
committerChristian Grothoff <christian@grothoff.org>2015-01-18 19:12:14 +0000
commitca1942843f7f8c2904eb4321a69568a6ae45b6e8 (patch)
treef521efc342e0ce124bfbf061d5dae014e29d26f8 /src/include/microhttpd.h
parent61876d057853557018e73cf4bde84d8021d11fbe (diff)
downloadlibmicrohttpd-ca1942843f7f8c2904eb4321a69568a6ae45b6e8.tar.gz
libmicrohttpd-ca1942843f7f8c2904eb4321a69568a6ae45b6e8.zip
fix infinite loop reported by Dominic Froud
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r--src/include/microhttpd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index e1114458..1685f146 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 0x00093900 133#define MHD_VERSION 0x00093901
134 134
135/** 135/**
136 * MHD-internal return code for "YES". 136 * MHD-internal return code for "YES".
@@ -170,7 +170,7 @@ typedef intptr_t ssize_t;
170#define _MHD_EXTERN extern 170#define _MHD_EXTERN extern
171#elif defined (_WIN32) && defined(MHD_W32DLL) 171#elif defined (_WIN32) && defined(MHD_W32DLL)
172/* Define MHD_W32DLL when using MHD as W32 .DLL to speed up linker a little */ 172/* Define MHD_W32DLL when using MHD as W32 .DLL to speed up linker a little */
173#define _MHD_EXTERN __declspec(dllimport) 173#define _MHD_EXTERN __declspec(dllimport)
174#else 174#else
175#define _MHD_EXTERN extern 175#define _MHD_EXTERN extern
176#endif 176#endif