This commit is contained in:
Christian Grothoff 2022-08-17 10:02:27 +02:00
parent c62792638b
commit bb8eb61441
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
4 changed files with 10 additions and 2 deletions

View File

@ -70,6 +70,12 @@
<anchorfile>microhttpd.h</anchorfile> <anchorfile>microhttpd.h</anchorfile>
<arglist></arglist> <arglist></arglist>
</member> </member>
<member kind="define">
<type>#define</type>
<name>MHD_HTTP_NETWORK_AUTHENTICATION_REQUIRED</name>
<anchorfile>microhttpd.h</anchorfile>
<arglist></arglist>
</member>
<member kind="define"> <member kind="define">
<type>#define</type> <type>#define</type>
<name>MHD_HTTP_GONE</name> <name>MHD_HTTP_GONE</name>

View File

@ -153,7 +153,8 @@ EXCLUDE_PATTERNS = */test_* \
*/.git/* \ */.git/* \
*/perf_* .* \ */perf_* .* \
.* \ .* \
*/gnu-taler-error-codes/* */gnu-taler-error-codes/* \
*/src/templating/mustach*
EXCLUDE_SYMBOLS = EXCLUDE_SYMBOLS =
EXAMPLE_PATH = EXAMPLE_PATH =
EXAMPLE_PATTERNS = * EXAMPLE_PATTERNS = *

View File

@ -645,6 +645,7 @@ kycaid_proof_cancel (struct TALER_KYCLOGIC_ProofHandle *ph)
* Call @a ph callback with HTTP response generated * Call @a ph callback with HTTP response generated
* from @a template_name using the given @a template_data. * 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 http_status http response status to use
* @param template_name template to load and return * @param template_name template to load and return
* @param[in] template_data data for the template, freed by this function! * @param[in] template_data data for the template, freed by this function!

View File

@ -193,7 +193,7 @@ TALER_TEMPLATING_build (struct MHD_Connection *connection,
{ {
/* FIXME: should this not be an /* FIXME: should this not be an
internal failure? The language internal failure? The language
missmatch is not critical here! */ mismatch is not critical here! */
GNUNET_log (GNUNET_ERROR_TYPE_ERROR, GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Failed to load template `%s'\n", "Failed to load template `%s'\n",
template); template);