anastasis

Credential backup and recovery protocol and service
Log | Files | Refs | Submodules | README | LICENSE

commit e35b82a7d597403fefa753598def3bc316d64e76
parent 4020fe40559c4373ceccf5f2d6b92b3bda5f5719
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun,  2 Mar 2025 00:57:29 +0100

-fix warning

Diffstat:
Msrc/include/anastasis_authorization_plugin.h | 24++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/include/anastasis_authorization_plugin.h b/src/include/anastasis_authorization_plugin.h @@ -23,7 +23,7 @@ #include "anastasis_service.h" #include <taler/taler_util.h> - +#include <microhttpd.h> /** * Plugin-specific state for an authorization operation. @@ -204,11 +204,11 @@ struct ANASTASIS_AuthorizationPlugin * #GNUNET_SYSERR if @a data invalid but we failed to queue a reply on @a connection */ enum GNUNET_GenericReturnValue - (*validate)(void *cls, - struct MHD_Connection *connection, - const char *truth_mime, - const char *data, - size_t data_length); + (*validate)(void *cls, + struct MHD_Connection *connection, + const char *truth_mime, + const char *data, + size_t data_length); /** @@ -248,8 +248,8 @@ struct ANASTASIS_AuthorizationPlugin * @return state of the request */ enum ANASTASIS_AUTHORIZATION_ChallengeResult - (*challenge)(struct ANASTASIS_AUTHORIZATION_State *as, - struct MHD_Connection *connection); + (*challenge)(struct ANASTASIS_AUTHORIZATION_State *as, + struct MHD_Connection *connection); /** @@ -262,10 +262,10 @@ struct ANASTASIS_AuthorizationPlugin * @return state of the request */ enum ANASTASIS_AUTHORIZATION_SolveResult - (*solve)(struct ANASTASIS_AUTHORIZATION_State *as, - struct GNUNET_TIME_Absolute timeout, - const struct GNUNET_HashCode *challenge_response, - struct MHD_Connection *connection); + (*solve)(struct ANASTASIS_AUTHORIZATION_State *as, + struct GNUNET_TIME_Absolute timeout, + const struct GNUNET_HashCode *challenge_response, + struct MHD_Connection *connection); /**