From 2f9cdec6ae1cc3d716606c017d595b2dea90bc22 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 9 Jun 2011 15:53:14 +0000 Subject: [PATCH] From: Jim Meyering To: libmicrohttpd@gnu.org Date: Today 10:17:27 I sent this change before, along with the s/are/is/ change, but I guess you didn't see it: Index: doc/microhttpd.texi =================================================================== --- doc/microhttpd.texi (revision 15482) +++ doc/microhttpd.texi (working copy) @@ -269,7 +269,7 @@ @deftp {Enumeration} MHD_FLAG Options for the @mhd{} daemon. -Note that if neither @code{MHD_USER_THREAD_PER_CONNECTION} nor +Note that if neither @code{MHD_USE_THREAD_PER_CONNECTION} nor @code{MHD_USE_SELECT_INTERNALLY} is used, the client wants control over the process and will call the appropriate microhttpd callbacks. Index: src/include/microhttpd.h =================================================================== --- src/include/microhttpd.h (revision 15482) +++ src/include/microhttpd.h (working copy) @@ -306,7 +306,7 @@ /** * Options for the MHD daemon. Note that if neither - * MHD_USER_THREAD_PER_CONNECTION nor MHD_USE_SELECT_INTERNALLY is + * MHD_USE_THREAD_PER_CONNECTION nor MHD_USE_SELECT_INTERNALLY is * used, the client wants control over the process and will call the * appropriate microhttpd callbacks.

--- doc/microhttpd.texi | 2 +- src/include/microhttpd.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/microhttpd.texi b/doc/microhttpd.texi index 1b1b4031..a4aab191 100644 --- a/doc/microhttpd.texi +++ b/doc/microhttpd.texi @@ -269,7 +269,7 @@ the percent sign). @deftp {Enumeration} MHD_FLAG Options for the @mhd{} daemon. -Note that if neither @code{MHD_USER_THREAD_PER_CONNECTION} nor +Note that if neither @code{MHD_USE_THREAD_PER_CONNECTION} nor @code{MHD_USE_SELECT_INTERNALLY} is used, the client wants control over the process and will call the appropriate microhttpd callbacks. diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h index 7ecdb3a6..27d3d40b 100644 --- a/src/include/microhttpd.h +++ b/src/include/microhttpd.h @@ -306,7 +306,7 @@ extern "C" /** * Options for the MHD daemon. Note that if neither - * MHD_USER_THREAD_PER_CONNECTION nor MHD_USE_SELECT_INTERNALLY is + * MHD_USE_THREAD_PER_CONNECTION nor MHD_USE_SELECT_INTERNALLY is * used, the client wants control over the process and will call the * appropriate microhttpd callbacks.

*