commit 95c05a88276cc41837aaae6d2b6d4b99d8bef612
parent 40dfb94e0f16928cc79147671492e58b827e2251
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 5 Jul 2023 18:19:54 +0200
fix mime-type matching (#7882)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mhd/mhd_legal.c b/src/mhd/mhd_legal.c
@@ -157,7 +157,7 @@ TALER_MHD_xmime_matches (const char *accept_pattern,
for (const char *tok = strtok_r (ap, ",", &sptr);
NULL != tok;
- tok = strtok_r (NULL, ";", &sptr))
+ tok = strtok_r (NULL, ",", &sptr))
{
if (mime_matches (tok,
mime))