summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd.c
diff options
context:
space:
mode:
authorJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2020-07-24 21:56:08 -0400
committerJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2020-07-24 21:56:08 -0400
commit469ea4f5c7a23ac89965bca8139e17d7bd26b9f0 (patch)
tree03028a74e9642c53e4cc301b393dfd524aaa1b11 /src/backend/taler-merchant-httpd.c
parent8631026e39b5dcd10019b0f770bc79cecf1d6fd5 (diff)
downloadmerchant-469ea4f5c7a23ac89965bca8139e17d7bd26b9f0.tar.gz
merchant-469ea4f5c7a23ac89965bca8139e17d7bd26b9f0.tar.bz2
merchant-469ea4f5c7a23ac89965bca8139e17d7bd26b9f0.zip
fix spelling mistakes
Diffstat (limited to 'src/backend/taler-merchant-httpd.c')
-rw-r--r--src/backend/taler-merchant-httpd.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c
index b6cb1cc4..75a4cf4d 100644
--- a/src/backend/taler-merchant-httpd.c
+++ b/src/backend/taler-merchant-httpd.c
@@ -1115,7 +1115,7 @@ url_handler (void *cls,
{
/* Client exceeds upload limit. Should _usually_ be checked earlier
when we look at the MHD_HTTP_HEADER_CONTENT_LENGTH, alas with
- chunked encoding an uploader MAY have ommitted this, and thus
+ chunked encoding an uploader MAY have omitted this, and thus
not permitted us to check on time. In this case, we just close
the connection once it exceeds our limit (instead of waiting
for the upload to complete and then fail). This could theoretically
@@ -1299,28 +1299,28 @@ url_handler (void *cls,
continue; /* too many segments to match */
if ( (NULL == infix_url)
^ (NULL == rh->url_suffix) )
- continue; /* suffix existence missmatch */
+ continue; /* suffix existence mismatch */
if ( (NULL != infix_url) &&
( (infix_strlen != strlen (rh->url_suffix)) ||
(0 != memcmp (infix_url,
rh->url_suffix,
infix_strlen)) ) )
- continue; /* cannot use infix as suffix: content missmatch */
+ continue; /* cannot use infix as suffix: content mismatch */
}
else
{
if ( (NULL == infix_url)
^ (GNUNET_NO == rh->have_id_segment) )
- continue; /* infix existence missmatch */
+ continue; /* infix existence mismatch */
if ( ( (NULL == suffix_url)
^ (NULL == rh->url_suffix) ) )
- continue; /* suffix existence missmatch */
+ continue; /* suffix existence mismatch */
if ( (NULL != suffix_url) &&
( (suffix_strlen != strlen (rh->url_suffix)) ||
(0 != memcmp (suffix_url,
rh->url_suffix,
suffix_strlen)) ) )
- continue; /* suffix content missmatch */
+ continue; /* suffix content mismatch */
}
url_found = true;
if (0 == strcasecmp (method,