diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-01-16 11:28:13 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-01-16 11:28:13 +0100 |
commit | 402ca17600d57e2a3569771eb57881c42d5db0e4 (patch) | |
tree | d8f026b8632d8db90fe049abae63afb9b9dd4732 | |
parent | d5619de525930cf76e5ff6bce3418e5b478dbe9f (diff) |
-fix warning
-rw-r--r-- | src/kyclogic/plugin_kyclogic_template.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/kyclogic/plugin_kyclogic_template.c b/src/kyclogic/plugin_kyclogic_template.c index b4531117e..54f36e6f2 100644 --- a/src/kyclogic/plugin_kyclogic_template.c +++ b/src/kyclogic/plugin_kyclogic_template.c @@ -279,7 +279,6 @@ template_proof_cancel (struct TALER_KYCLOGIC_ProofHandle *ph) * * @param cls the @e cls of this struct with the plugin-specific state * @param pd provider configuration details - * @param url_path rest of the URL after `/kyc-webhook/` * @param connection MHD connection object (for HTTP headers) * @param account_id which account to trigger process for * @param process_row row in the legitimization processes table the legitimization is for @@ -292,7 +291,6 @@ template_proof_cancel (struct TALER_KYCLOGIC_ProofHandle *ph) static struct TALER_KYCLOGIC_ProofHandle * template_proof (void *cls, const struct TALER_KYCLOGIC_ProviderDetails *pd, - const char *const url_path[], struct MHD_Connection *connection, const struct TALER_PaytoHashP *account_id, uint64_t process_row, @@ -304,7 +302,6 @@ template_proof (void *cls, struct PluginState *ps = cls; struct TALER_KYCLOGIC_ProofHandle *ph; - (void) url_path; (void) account_id; (void) process_row; (void) provider_user_id; |