summaryrefslogtreecommitdiff
path: root/content/fetchcache.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/fetchcache.c')
-rw-r--r--content/fetchcache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/fetchcache.c b/content/fetchcache.c
index 4714d8002..61f391e84 100644
--- a/content/fetchcache.c
+++ b/content/fetchcache.c
@@ -75,7 +75,7 @@ struct content * fetchcache(const char *url,
struct content *c;
char *url1;
char *hash;
-
+
if ((url1 = strdup(url)) == NULL)
return NULL;
@@ -350,7 +350,7 @@ void fetchcache_callback(fetch_msg msg, void *p, const char *data,
void fetchcache_init(void)
{
regcomp_wrapper(&re_content_type,
- "^([-0-9a-zA-Z_.]+/[-0-9a-zA-Z_.]+)[ \t]*"
+ "^([-0-9a-zA-Z_.]+/[-0-9a-zA-Z_.+]+)[ \t]*"
"(;[ \t]*([-0-9a-zA-Z_.]+)="
"([-0-9a-zA-Z_.]+|\"([^\"]|[\\].)*\")[ \t]*)*$",
REG_EXTENDED);