evolution-data-server r9885 - in trunk/camel/providers: groupwise hula imap imap4
- From: mcrha svn gnome org
- To: svn-commits-list gnome org
- Subject: evolution-data-server r9885 - in trunk/camel/providers: groupwise hula imap imap4
- Date: Thu, 8 Jan 2009 10:51:42 +0000 (UTC)
Author: mcrha
Date: Thu Jan 8 10:51:42 2009
New Revision: 9885
URL: http://svn.gnome.org/viewvc/evolution-data-server?rev=9885&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:
trunk/camel/providers/groupwise/ChangeLog
trunk/camel/providers/groupwise/camel-groupwise-provider.c
trunk/camel/providers/hula/ChangeLog
trunk/camel/providers/hula/camel-hula-provider.c
trunk/camel/providers/imap/ChangeLog
trunk/camel/providers/imap/camel-imap-provider.c
trunk/camel/providers/imap4/ChangeLog
trunk/camel/providers/imap4/camel-imap4-provider.c
Modified: trunk/camel/providers/groupwise/camel-groupwise-provider.c
==============================================================================
--- trunk/camel/providers/groupwise/camel-groupwise-provider.c (original)
+++ trunk/camel/providers/groupwise/camel-groupwise-provider.c Thu Jan 8 10:51:42 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: trunk/camel/providers/hula/camel-hula-provider.c
==============================================================================
--- trunk/camel/providers/hula/camel-hula-provider.c (original)
+++ trunk/camel/providers/hula/camel-hula-provider.c Thu Jan 8 10:51:42 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: trunk/camel/providers/imap/camel-imap-provider.c
==============================================================================
--- trunk/camel/providers/imap/camel-imap-provider.c (original)
+++ trunk/camel/providers/imap/camel-imap-provider.c Thu Jan 8 10:51:42 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: trunk/camel/providers/imap4/camel-imap4-provider.c
==============================================================================
--- trunk/camel/providers/imap4/camel-imap4-provider.c (original)
+++ trunk/camel/providers/imap4/camel-imap4-provider.c Thu Jan 8 10:51:42 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]