libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 8b0dc86067605c468136266bcbd38d08105340c9
parent 83817b75a311e9fb58794e784958dc4298f82fbb
Author: LRN <lrn1986@gmail.com>
Date:   Tue, 24 Sep 2013 12:49:32 +0000

Fix a typo


Diffstat:
Msrc/include/plibc/plibc.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/include/plibc/plibc.h b/src/include/plibc/plibc.h @@ -364,7 +364,7 @@ enum /* Make sure it's the same as WSATIMEDOUT */ # define ETIMEDOUT 138 /* Connection timed out */ #endif -#if !defined(EWOULDBLOCK) || EWOULBLOCK == 140 +#if !defined(EWOULDBLOCK) || EWOULDBLOCK == 140 # undef EWOULDBLOCK /* MinGW-w64 defines it as 140, but we want it as EAGAIN */ # define EWOULDBLOCK EAGAIN /* Operation would block */ #endif