diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-11-01 17:41:27 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-11-01 17:41:27 +0100 |
commit | cdc85dd9f8f84f22daf882c7d5152ccfc04a2d2c (patch) | |
tree | 3004356008124ae3cd3bb4496ed360b4e21173b7 | |
parent | 07cc3d3c1eff9c2a8bcdabcf5b755dc8cafa97e2 (diff) |
comment typo
-rw-r--r-- | src/backend/taler-merchant-httpd_check-payment.c | 3 | ||||
-rw-r--r-- | src/backend/taler-merchant-httpd_refund.c | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/taler-merchant-httpd_check-payment.c b/src/backend/taler-merchant-httpd_check-payment.c index 02a5120b..74b8c5c1 100644 --- a/src/backend/taler-merchant-httpd_check-payment.c +++ b/src/backend/taler-merchant-httpd_check-payment.c @@ -60,7 +60,6 @@ make_taler_pay_uri (struct MHD_Connection *connection, const char *query; char *result; - host = MHD_lookup_connection_value (connection, MHD_HEADER_KIND, "Host"); forwarded_host = MHD_lookup_connection_value (connection, MHD_HEADER_KIND, "X-Forwarded-Host"); @@ -80,7 +79,7 @@ make_taler_pay_uri (struct MHD_Connection *connection, if (NULL == host) { - /* Should never happen, at last the host header should be defined */ + /* Should never happen, at least the host header should be defined */ GNUNET_break (0); return NULL; } diff --git a/src/backend/taler-merchant-httpd_refund.c b/src/backend/taler-merchant-httpd_refund.c index a7b1660d..8fa4c132 100644 --- a/src/backend/taler-merchant-httpd_refund.c +++ b/src/backend/taler-merchant-httpd_refund.c @@ -115,7 +115,7 @@ make_taler_refund_uri (struct MHD_Connection *connection, if (NULL == host) { - /* Should never happen, at last the host header should be defined */ + /* Should never happen, at least the host header should be defined */ GNUNET_break (0); return NULL; } |