aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-11-14 08:50:19 +0100
committerChristian Grothoff <christian@grothoff.org>2024-11-14 08:50:19 +0100
commitaf66f5c044f57937f87b86eea95b606e52f7deb8 (patch)
treedca586b650a62c6a1a2c88ad64a78252c0f0b2c6 /src/backend
parent795faaf14b4a8c010edc5f524f55bec4131b9a78 (diff)
fix typos
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/taler-merchant-httpd_private-get-instances-ID-kyc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/taler-merchant-httpd_private-get-instances-ID-kyc.c b/src/backend/taler-merchant-httpd_private-get-instances-ID-kyc.c
index f667c886..1722d23a 100644
--- a/src/backend/taler-merchant-httpd_private-get-instances-ID-kyc.c
+++ b/src/backend/taler-merchant-httpd_private-get-instances-ID-kyc.c
@@ -543,26 +543,26 @@ map_to_status (const struct ExchangeKycRequest *ekr)
case 0:
return "exchange-unreachable";
case MHD_HTTP_OK:
- /* then whe should have kyc_ok */
+ /* then we should have kyc_ok */
GNUNET_break (0);
return NULL;
case MHD_HTTP_ACCEPTED:
/* Then KYC is really what is needed */
return "kyc-required";
case MHD_HTTP_NO_CONTENT:
- /* then whe should have had kyc_ok! */
+ /* then we should have had kyc_ok! */
GNUNET_break (0);
return NULL;
case MHD_HTTP_FORBIDDEN:
- /* then whe should have had ! auth_ok */
+ /* then we should have had ! auth_ok */
GNUNET_break (0);
return NULL;
case MHD_HTTP_NOT_FOUND:
- /* then whe should have had ! auth_ok */
+ /* then we should have had ! auth_ok */
GNUNET_break (0);
return NULL;
case MHD_HTTP_CONFLICT:
- /* then whe should have had ! auth_ok */
+ /* then we should have had ! auth_ok */
GNUNET_break (0);
return NULL;
case MHD_HTTP_INTERNAL_SERVER_ERROR: