From 8b79f2dff464221e65f8c09b75c47182fea29f38 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Fri, 14 Feb 2003 20:44:39 +0000 Subject: watch for <>'s too svn path=/trunk/; revision=19914 --- camel/camel-url-scanner.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'camel/camel-url-scanner.c') 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; } -- cgit