2006-10-17 [colin] 2.5.5cvs12
authorColin Leroy <colin@colino.net>
Tue, 17 Oct 2006 16:39:22 +0000 (16:39 +0000)
committerColin Leroy <colin@colino.net>
Tue, 17 Oct 2006 16:39:22 +0000 (16:39 +0000)
* src/compose.c
Compare addresses case-insensitive

ChangeLog
PATCHSETS
configure.ac
src/compose.c

index 1fdf14346f92519964080160b2eaf2877370b008..7628b4e223e5e9d21fdb3b18ce571a4bf1b80759 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 88b9f0d75e437410ba73fee99d319e7b912ecd2c..0c137ccba4b96a960c9e856f286206a8d69a0449 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( 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
index 87b1ad973c3970f4e3a55789f787b1a2ba9c66bb..d030c855d767c14bd3c5b6e17b149da46405263a 100644 (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=
 
index fefb12ba4f45129aaa59c81c019302113b49bf70..1f252bc62541c0daf1078a53bf08d11cf16ebc02 100644 (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,