[evolution-patches] Fix for bug 328384 [gtkhtml]



Hi

Attached fix for Bug 328384 – Email ids with "|" in the bugzilla mails

Please Review

Thanks,
Rohini
Index: camel-url-scanner.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/camel/camel-url-scanner.c,v
retrieving revision 1.19
diff -u -p -r1.19 camel-url-scanner.c
--- camel-url-scanner.c	6 Dec 2005 04:21:55 -0000	1.19
+++ camel-url-scanner.c	13 Feb 2006 03:21:49 -0000
@@ -212,7 +212,7 @@ camel_url_addrspec_start (const char *in
 			inptr--;
 	}
 	
-	if (!is_atom (*inptr) || is_open_brace (*inptr))
+	while (!is_atom (*inptr) || is_open_brace (*inptr))
 		inptr++;
 	
 	if (inptr == pos)
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution-data-server/camel/ChangeLog,v
retrieving revision 1.2521
diff -u -p -r1.2521 ChangeLog
--- ChangeLog	2 Feb 2006 08:37:46 -0000	1.2521
+++ ChangeLog	13 Feb 2006 03:25:02 -0000
@@ -1,3 +1,11 @@
+2006-02-13  Rohini S  <srohini novell com>
+
+	**See bug 328384
+
+	* camel-url-scanner.c (camel_url_addrspec_start): 
+	modified to remove all invalid characters in the beginning 
+	of a email address
+
 2006-02-02  Parthasarathi Susarla <sparthasarathi novell com>
 	
 	** See bug 328481


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]