Use camel_strcase_hash/equal.

2003-07-07  Jeffrey Stedfast  <fejj@ximian.com>

	* mail-callbacks.c (mail_generate_reply): Use
	camel_strcase_hash/equal.

svn path=/trunk/; revision=21756
This commit is contained in:
Jeffrey Stedfast
2003-07-07 21:44:18 +00:00
committed by Jeffrey Stedfast
parent 0b15e4defd
commit abb46e8ee1
2 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2003-07-07 Jeffrey Stedfast <fejj@ximian.com>
* mail-callbacks.c (mail_generate_reply): Use
camel_strcase_hash/equal.
* upgrade-mailer.c: Updated to use the camel-file-utils version of
mkdir.

View File

@ -913,7 +913,7 @@ guess_me_from_accounts (const CamelInternetAddress *to, const CamelInternetAddre
GHashTable *account_hash;
EIterator *iter;
account_hash = g_hash_table_new (g_strcase_hash, g_strcase_equal);
account_hash = g_hash_table_new (camel_strcase_hash, camel_strcase_equal);
/* add the default account to the hash first */
if ((def = mail_config_get_default_account ())) {
@ -1016,7 +1016,7 @@ mail_generate_reply (CamelFolder *folder, CamelMimeMessage *message, const char
/* Set the recipients */
accounts = mail_config_get_accounts ();
account_hash = g_hash_table_new (g_strcase_hash, g_strcase_equal);
account_hash = g_hash_table_new (camel_strcase_hash, camel_strcase_equal);
/* add the default account to the hash first */
if ((def = mail_config_get_default_account ())) {
@ -1119,7 +1119,7 @@ mail_generate_reply (CamelFolder *folder, CamelMimeMessage *message, const char
GHashTable *rcpt_hash;
EDestination *dest;
rcpt_hash = g_hash_table_new (g_strcase_hash, g_strcase_equal);
rcpt_hash = g_hash_table_new (camel_strcase_hash, camel_strcase_equal);
reply_to = camel_mime_message_get_reply_to (message);
if (!reply_to)