From e3401afa64386ee919db223ec96b609307a1ad6a Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 13 Jan 2011 14:02:37 +0000 Subject: [PATCH] [libmicrohttpd] fix doc typo: s/USER/USE/ in MHD_USER_THREAD_PER_CONNECTION From: Jim Meyering To: libmicrohttpd@gnu.org Date: Today 12:42:34 Spam Status: Spamassassin 0% probability of being spam. Full report: Probability=No, score=-3.7 required=7.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5-tuminfo_1 Here is a patch to fix two typo fixes (and grammar nit). I didn't change microhttpd.info, since it's generated. (personally, I would not version-control a generated .info file) Index: ChangeLog --- 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 e96ef842..d9ccda4c 100644 --- a/doc/microhttpd.texi +++ b/doc/microhttpd.texi @@ -270,7 +270,7 @@ the percent sign). Options for the @mhd{} daemon. Note that if neither @code{MHD_USER_THREAD_PER_CONNECTION} nor -@code{MHD_USE_SELECT_INTERNALLY} are used, the client wants control over +@code{MHD_USE_SELECT_INTERNALLY} is used, the client wants control over the process and will call the appropriate microhttpd callbacks. Starting the daemon may also fail if a particular option is not diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h index b2ab1c33..0bc8902e 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 are + * MHD_USER_THREAD_PER_CONNECTION nor MHD_USE_SELECT_INTERNALLY is * used, the client wants control over the process and will call the * appropriate microhttpd callbacks.

*