Mercurial > pidgin.yaz
changeset 6264:a5a43d03cb51
[gaim-migrate @ 6761]
The pouncee specified in a buddy pounce is no longer case-sensitive. Or
whatever. I think that description kind of sucked.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Tue, 22 Jul 2003 06:44:30 +0000 |
parents | 3565ee7a5dd3 |
children | 4d977ac75f76 |
files | src/pounce.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/pounce.c Tue Jul 22 03:26:33 2003 +0000 +++ b/src/pounce.c Tue Jul 22 06:44:30 2003 +0000 @@ -376,7 +376,7 @@ if ((gaim_pounce_get_events(pounce) & events) && (gaim_pounce_get_pouncer(pounce) == pouncer) && - !strcmp(gaim_pounce_get_pouncee(pounce), pouncee)) { + !g_strcasecmp(gaim_pounce_get_pouncee(pounce), pouncee)) { handler = g_hash_table_lookup(pounce_handlers, pounce->ui_type); @@ -406,7 +406,7 @@ if ((gaim_pounce_get_events(pounce) & events) && (gaim_pounce_get_pouncer(pounce) == pouncer) && - !strcmp(gaim_pounce_get_pouncee(pounce), pouncee)) { + !g_strcasecmp(gaim_pounce_get_pouncee(pounce), pouncee)) { return pounce; }