From b0d514478f3c2cee2889bd9d76b0b6055f2c7d66 Mon Sep 17 00:00:00 2001 From: ivanr Date: Mon, 15 Oct 2007 18:05:12 +0000 Subject: [PATCH] Fix blocking multipart FP, which affected Safari. --- apache2/msc_multipart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache2/msc_multipart.c b/apache2/msc_multipart.c index 8a1f431d..64f5264e 100644 --- a/apache2/msc_multipart.c +++ b/apache2/msc_multipart.c @@ -624,7 +624,7 @@ static int multipart_count_boundary_params(apr_pool_t *mp, const char *header_va while((s = strstr(s, "boundary")) != NULL) { s += 8; - if (strchr(s, "=") != NULL) { + if (strchr(s, '=') != NULL) { count++; } }