summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-08-17 10:02:27 +0200
committerChristian Grothoff <christian@grothoff.org>2022-08-17 10:02:27 +0200
commitbb8eb6144132ae55b45b717b445d0e98bc2e84fa (patch)
tree936afb878d785736ccb1d0d80476e339a202861f
parentc62792638bd933b9e6fe57358c1233b7a48d6d3f (diff)
downloadexchange-bb8eb6144132ae55b45b717b445d0e98bc2e84fa.tar.gz
exchange-bb8eb6144132ae55b45b717b445d0e98bc2e84fa.tar.bz2
exchange-bb8eb6144132ae55b45b717b445d0e98bc2e84fa.zip
-doxygen
-rw-r--r--contrib/microhttpd.tag6
-rw-r--r--doc/doxygen/taler.doxy3
-rw-r--r--src/kyclogic/plugin_kyclogic_kycaid.c1
-rw-r--r--src/templating/templating_api.c2
4 files changed, 10 insertions, 2 deletions
diff --git a/contrib/microhttpd.tag b/contrib/microhttpd.tag
index 4780028dd..d80405036 100644
--- a/contrib/microhttpd.tag
+++ b/contrib/microhttpd.tag
@@ -72,6 +72,12 @@
</member>
<member kind="define">
<type>#define</type>
+ <name>MHD_HTTP_NETWORK_AUTHENTICATION_REQUIRED</name>
+ <anchorfile>microhttpd.h</anchorfile>
+ <arglist></arglist>
+ </member>
+ <member kind="define">
+ <type>#define</type>
<name>MHD_HTTP_GONE</name>
<anchorfile>microhttpd.h</anchorfile>
<arglist></arglist>
diff --git a/doc/doxygen/taler.doxy b/doc/doxygen/taler.doxy
index dafe78fa5..6eeb514a5 100644
--- a/doc/doxygen/taler.doxy
+++ b/doc/doxygen/taler.doxy
@@ -153,7 +153,8 @@ EXCLUDE_PATTERNS = */test_* \
*/.git/* \
*/perf_* .* \
.* \
- */gnu-taler-error-codes/*
+ */gnu-taler-error-codes/* \
+ */src/templating/mustach*
EXCLUDE_SYMBOLS =
EXAMPLE_PATH =
EXAMPLE_PATTERNS = *
diff --git a/src/kyclogic/plugin_kyclogic_kycaid.c b/src/kyclogic/plugin_kyclogic_kycaid.c
index 5c56bcf48..2ebbe986c 100644
--- a/src/kyclogic/plugin_kyclogic_kycaid.c
+++ b/src/kyclogic/plugin_kyclogic_kycaid.c
@@ -645,6 +645,7 @@ kycaid_proof_cancel (struct TALER_KYCLOGIC_ProofHandle *ph)
* Call @a ph callback with HTTP response generated
* from @a template_name using the given @a template_data.
*
+ * @param ph proof handle to generate reply for
* @param http_status http response status to use
* @param template_name template to load and return
* @param[in] template_data data for the template, freed by this function!
diff --git a/src/templating/templating_api.c b/src/templating/templating_api.c
index 38a2d3e31..999ba9dae 100644
--- a/src/templating/templating_api.c
+++ b/src/templating/templating_api.c
@@ -193,7 +193,7 @@ TALER_TEMPLATING_build (struct MHD_Connection *connection,
{
/* FIXME: should this not be an
internal failure? The language
- missmatch is not critical here! */
+ mismatch is not critical here! */
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Failed to load template `%s'\n",
template);