diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-04-24 01:23:35 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-04-24 01:23:35 +0200 |
commit | 0b57eac8f3b99941a11f11f35feac1926cd21d31 (patch) | |
tree | 1e3cb7efa7c60ab8f85e0797979adc7f23dda086 /src/testing/testing_api_cmd_patch_instance.c | |
parent | b378eea34812a9b561be6149e40c4518070f34f7 (diff) |
implement purge
Diffstat (limited to 'src/testing/testing_api_cmd_patch_instance.c')
-rw-r--r-- | src/testing/testing_api_cmd_patch_instance.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/testing/testing_api_cmd_patch_instance.c b/src/testing/testing_api_cmd_patch_instance.c index 0044333e..0d589bb2 100644 --- a/src/testing/testing_api_cmd_patch_instance.c +++ b/src/testing/testing_api_cmd_patch_instance.c @@ -35,7 +35,7 @@ struct PatchInstanceState { /** - * Handle for a "GET instance" request. + * Handle for a "PATCH /instance/$ID" request. */ struct TALER_MERCHANT_InstancePatchHandle *iph; @@ -50,7 +50,7 @@ struct PatchInstanceState const char *merchant_url; /** - * ID of the instance to run GET for. + * ID of the instance to run PATCH for. */ const char *instance_id; @@ -183,7 +183,7 @@ patch_instance_run (void *cls, /** - * Free the state of a "GET instance" CMD, and possibly + * Free the state of a "PATCH /instances/$ID" CMD, and possibly * cancel a pending operation thereof. * * @param cls closure. @@ -198,7 +198,7 @@ patch_instance_cleanup (void *cls, if (NULL != pis->iph) { GNUNET_log (GNUNET_ERROR_TYPE_WARNING, - "GET /instance/$ID operation did not complete\n"); + "PATCH /instance/$ID operation did not complete\n"); TALER_MERCHANT_instance_patch_cancel (pis->iph); } json_decref (pis->address); |