diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-05-30 05:27:44 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-05-30 05:27:44 +0800 |
commit | 2c12caa331ee162755b8f42c3b3c954f20151983 (patch) | |
tree | f419f5c2e6b1c58ef0f81b006aaf0f3fe16ad291 | |
parent | a1bed32eb6e36f9281ea41cc6ae972baad258296 (diff) | |
download | gsoc2013-evolution-2c12caa331ee162755b8f42c3b3c954f20151983.tar gsoc2013-evolution-2c12caa331ee162755b8f42c3b3c954f20151983.tar.gz gsoc2013-evolution-2c12caa331ee162755b8f42c3b3c954f20151983.tar.bz2 gsoc2013-evolution-2c12caa331ee162755b8f42c3b3c954f20151983.tar.lz gsoc2013-evolution-2c12caa331ee162755b8f42c3b3c954f20151983.tar.xz gsoc2013-evolution-2c12caa331ee162755b8f42c3b3c954f20151983.tar.zst gsoc2013-evolution-2c12caa331ee162755b8f42c3b3c954f20151983.zip |
sp
svn path=/trunk/; revision=10047
-rw-r--r-- | mail/mail-callbacks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index e38e176fef..e998d5e428 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -477,7 +477,7 @@ list_add_addresses (GList *list, const CamelInternetAddress *cia, const GSList * for (i = 0; camel_internet_address_get (cia, i, &name, &addr); i++) { /* Make sure we don't want to ignore this address */ - if (!ignore || g_strcasecmp (ignore, addr)) { + if (!ignore_addr || g_strcasecmp (ignore_addr, addr)) { /* now, we format this, as if for display, but does the composer then use it as a real address? If so, very broken. */ /* we should probably pass around CamelAddresse's if thats what |