diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-07-05 18:19:54 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-07-05 18:19:54 +0200 |
commit | 95c05a88276cc41837aaae6d2b6d4b99d8bef612 (patch) | |
tree | a4eadb1f5a03193d857d5d5c871e809c1653058b /src/mhd | |
parent | 40dfb94e0f16928cc79147671492e58b827e2251 (diff) |
fix mime-type matching (#7882)
Diffstat (limited to 'src/mhd')
-rw-r--r-- | src/mhd/mhd_legal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mhd/mhd_legal.c b/src/mhd/mhd_legal.c index bec33cd48..6325fdf7c 100644 --- 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)) |