evolution-data-server r9886 - in branches/gnome-2-24/camel/providers: groupwise hula imap imap4



Author: mcrha
Date: Thu Jan  8 10:52:18 2009
New Revision: 9886
URL: http://svn.gnome.org/viewvc/evolution-data-server?rev=9886&view=rev

Log:
2009-01-08  Milan Crha  <mcrha redhat com>

	** Fix for bug #554182

	* camel/providers/groupwise/camel-groupwise-provider.c: (groupwise_url_hash), (groupwise_url_equal):
	* camel/providers/imap/camel-imap-provider.c: (imap_url_hash), (imap_url_equal):
	* camel/providers/hula/camel-hula-provider.c: (hula_url_hash), (hula_url_equal):
	* camel/providers/imap4/camel-imap4-provider.c: (imap4_url_hash), (imap4_url_equal):
	Don't use 'authmech' for URL comparision.



Modified:
   branches/gnome-2-24/camel/providers/groupwise/ChangeLog
   branches/gnome-2-24/camel/providers/groupwise/camel-groupwise-provider.c
   branches/gnome-2-24/camel/providers/hula/ChangeLog
   branches/gnome-2-24/camel/providers/hula/camel-hula-provider.c
   branches/gnome-2-24/camel/providers/imap/ChangeLog
   branches/gnome-2-24/camel/providers/imap/camel-imap-provider.c
   branches/gnome-2-24/camel/providers/imap4/ChangeLog
   branches/gnome-2-24/camel/providers/imap4/camel-imap4-provider.c

Modified: branches/gnome-2-24/camel/providers/groupwise/camel-groupwise-provider.c
==============================================================================
--- branches/gnome-2-24/camel/providers/groupwise/camel-groupwise-provider.c	(original)
+++ branches/gnome-2-24/camel/providers/groupwise/camel-groupwise-provider.c	Thu Jan  8 10:52:18 2009
@@ -165,7 +165,6 @@
 	guint hash = 0;
 
 	add_hash (&hash, u->user);
-	add_hash (&hash, u->authmech);
 	add_hash (&hash, u->host);
 	hash ^= u->port;
 	
@@ -195,7 +194,6 @@
 	
 	return check_equal (u1->protocol, u2->protocol)
 		&& check_equal (u1->user, u2->user)
-		&& check_equal (u1->authmech, u2->authmech)
 		&& check_equal (u1->host, u2->host)
 		&& u1->port == u2->port;
 }

Modified: branches/gnome-2-24/camel/providers/hula/camel-hula-provider.c
==============================================================================
--- branches/gnome-2-24/camel/providers/hula/camel-hula-provider.c	(original)
+++ branches/gnome-2-24/camel/providers/hula/camel-hula-provider.c	Thu Jan  8 10:52:18 2009
@@ -148,7 +148,6 @@
 	guint hash = 0;
 
 	add_hash (&hash, u->user);
-	add_hash (&hash, u->authmech);
 	add_hash (&hash, u->host);
 	hash ^= u->port;
 	
@@ -178,7 +177,6 @@
 	
 	return check_equal (u1->protocol, u2->protocol)
 		&& check_equal (u1->user, u2->user)
-		&& check_equal (u1->authmech, u2->authmech)
 		&& check_equal (u1->host, u2->host)
 		&& u1->port == u2->port;
 }

Modified: branches/gnome-2-24/camel/providers/imap/camel-imap-provider.c
==============================================================================
--- branches/gnome-2-24/camel/providers/imap/camel-imap-provider.c	(original)
+++ branches/gnome-2-24/camel/providers/imap/camel-imap-provider.c	Thu Jan  8 10:52:18 2009
@@ -133,7 +133,6 @@
 	guint hash = 0;
 
 	add_hash (&hash, u->user);
-	add_hash (&hash, u->authmech);
 	add_hash (&hash, u->host);
 	hash ^= u->port;
 	
@@ -163,7 +162,6 @@
 	
 	return check_equal (u1->protocol, u2->protocol)
 		&& check_equal (u1->user, u2->user)
-		&& check_equal (u1->authmech, u2->authmech)
 		&& check_equal (u1->host, u2->host)
 		&& u1->port == u2->port;
 }

Modified: branches/gnome-2-24/camel/providers/imap4/camel-imap4-provider.c
==============================================================================
--- branches/gnome-2-24/camel/providers/imap4/camel-imap4-provider.c	(original)
+++ branches/gnome-2-24/camel/providers/imap4/camel-imap4-provider.c	Thu Jan  8 10:52:18 2009
@@ -105,7 +105,6 @@
 	guint hash = 0;
 	
 	add_hash (&hash, u->user);
-	add_hash (&hash, u->authmech);
 	add_hash (&hash, u->host);
 	hash ^= u->port;
 	
@@ -135,7 +134,6 @@
 	
 	return check_equal (u1->protocol, u2->protocol)
 		&& check_equal (u1->user, u2->user)
-		&& check_equal (u1->authmech, u2->authmech)
 		&& check_equal (u1->host, u2->host)
 		&& u1->port == u2->port;
 }



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