libmicrohttpd

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

commit dd95c307b24e9021be07eb6946e063f104731b2e
parent 1c1674149b3b89a31d2178099590d6d0e8b3fe85
Author: silvioprog <silvioprog@gmail.com>
Date:   Sat, 25 Feb 2017 00:05:48 -0300

fix tipo: `MHD_FEATURE_MESSGES` -> `MHD_FEATURE_MESSAGES`.

Diffstat:
Msrc/include/microhttpd.h | 2+-
Msrc/microhttpd/daemon.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h @@ -3112,7 +3112,7 @@ enum MHD_FEATURE * Get whether messages are supported. If supported then in debug * mode messages can be printed to stderr or to external logger. */ - MHD_FEATURE_MESSGES = 1, + MHD_FEATURE_MESSAGES = 1, /** * Get whether HTTPS is supported. If supported then flag diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c @@ -6002,7 +6002,7 @@ MHD_is_feature_supported(enum MHD_FEATURE feature) { switch(feature) { - case MHD_FEATURE_MESSGES: + case MHD_FEATURE_MESSAGES: #ifdef HAVE_MESSAGES return MHD_YES; #else