aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--camel/camel-url-scanner.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-url-scanner.c b/camel/camel-url-scanner.c
index fb059b8369..4419d43bb6 100644
--- a/camel/camel-url-scanner.c
+++ b/camel/camel-url-scanner.c
@@ -233,6 +233,7 @@ static struct {
{ '(', ')' },
{ '{', '}' },
{ '[', ']' },
+ { '<', '>' },
};
static char
@@ -241,7 +242,7 @@ url_stop_at_brace (const char *in, size_t so)
int i;
if (so > 0) {
- for (i = 0; i < 3; i++) {
+ for (i = 0; i < 4; i++) {
if (in[so - 1] == url_braces[i].open)
return url_braces[i].close;
}