2006-10-17 [colin] 2.5.5cvs12

* src/compose.c
		Compare addresses case-insensitive
This commit is contained in:
Colin Leroy 2006-10-17 16:39:22 +00:00
parent 30ef5f10f1
commit f8f2389667
4 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2006-10-17 [colin] 2.5.5cvs12
* src/compose.c
Compare addresses case-insensitive
2006-10-17 [colin] 2.5.5cvs11
* src/plugins/pgpcore/sgpgme.c

View file

@ -1997,3 +1997,4 @@
( cvs diff -u -r 1.8.2.11 -r 1.8.2.12 src/quote_fmt.c; ) > 2.5.5cvs9.patchset
( cvs diff -u -r 1.1.2.5 -r 1.1.2.6 src/plugins/pgpcore/pgp_viewer.c; ) > 2.5.5cvs10.patchset
( cvs diff -u -r 1.1.2.31 -r 1.1.2.32 src/plugins/pgpcore/sgpgme.c; ) > 2.5.5cvs11.patchset
( cvs diff -u -r 1.382.2.315 -r 1.382.2.316 src/compose.c; ) > 2.5.5cvs12.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=5
MICRO_VERSION=5
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=11
EXTRA_VERSION=12
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -2494,7 +2494,7 @@ static gboolean same_address(const gchar *addr1, const gchar *addr2)
extract_address(my_addr1);
extract_address(my_addr2);
return !strcmp(my_addr1, my_addr2);
return !strcasecmp(my_addr1, my_addr2);
}
static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,