aboutsummaryrefslogtreecommitdiffstats
path: root/user.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-11-15 16:16:53 +0100
committerJelmer Vernooij <jelmer@samba.org>2005-11-15 16:16:53 +0100
commitcc9079ee091707aba3d5b0580a6191eb4541cbec (patch)
treef3e4bd989411795a4f5184eea5bcbc68be3713b5 /user.c
parentf56c4917aa26670c03ef9cf4ecdfe2f7fad92aed (diff)
parentc998255d6aa501281c6266a5f1dce69d4c3afab4 (diff)
Merge from other branch.
Diffstat (limited to 'user.c')
-rw-r--r--user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/user.c b/user.c
index bd68d20b..b795c864 100644
--- a/user.c
+++ b/user.c
@@ -145,7 +145,7 @@ user_t *user_findhandle( struct gaim_connection *gc, char *handle )
while( u )
{
- if( u->gc == gc && u->handle && handle_cmp( u->handle, handle, gc->prpl) == 0 )
+ if( u->gc == gc && u->handle && gc->prpl->cmp_buddynames ( u->handle, handle ) == 0 )
break;
u = u->next;
}